gwnavruntime/basesystem/straightmalloc.h Source File
Go to the documentation of this file.
8 #ifndef Navigation_StraightMalloc_H
9 #define Navigation_StraightMalloc_H
25 static void*
Alloc(UPInt size);
26 static void*
Realloc(
void* oldPtr, UPInt newSize);
31 static void*
Alloc(UPInt size, UPInt align);
33 static void Free(
void* ptr);
43 static void* Alloc(UPInt size, UPInt align);
44 static void Free(
void* ptr, UPInt size, UPInt align);
45 static void* Realloc(
void* oldPtr, UPInt oldSize, UPInt newSize, UPInt align);
multi-platform abstraction of malloc/free/realloc Note that this is used only by the generation throu...
Definition: straightmalloc.h:21
multi-platform abstraction of malloc/free/realloc Note that this is used via GeneratorSysAlloc and it...
Definition: straightmalloc.h:41
static void * Alloc(UPInt size)
Alloc without alignment.
Definition: gamekitcrowddispersion.h:20
static void * Realloc(void *oldPtr, UPInt newSize)
Realloc without alignment.