Searched refs:deMalloc (Results 1 – 12 of 12) sorted by relevance
46 void* deMalloc (int numBytes) in deMalloc() function78 void* ptr = deMalloc(numBytes); in deCalloc()87 deUintptr origPtr = (deUintptr)deMalloc(numBytes + ptrSize + alignBytes); in deAlignedMalloc()
32 #define DE_NEW(TYPE) ((TYPE*)deMalloc(sizeof(TYPE)))35 void* deMalloc (int numBytes);
73 ThreadEntry* entry = (ThreadEntry*)deMalloc(sizeof(ThreadEntry)); in deThread_create()122 …SYSTEM_LOGICAL_PROCESSOR_INFORMATION* info = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION*)deMalloc(curSi… in getWin32ProcessorInfo()
49 CRITICAL_SECTION* criticalSection = (CRITICAL_SECTION*)deMalloc(sizeof(CRITICAL_SECTION)); in deMutex_create()
36 sem_t* sem = (sem_t*)deMalloc(sizeof(sem_t)); in deSemaphore_create()
40 pthread_mutex_t* mutex = deMalloc(sizeof(pthread_mutex_t)); in deMutex_create()
62 ringbuffer->buffer = (deUint8*)deMalloc(sizeof(deUint8) * blockSize * blockCount); in deRingbuffer_create()63 ringbuffer->blockUsage = (deInt32*)deMalloc(sizeof(deUint32) * blockCount); in deRingbuffer_create()
66 buffer = deMalloc(bufSize); in deImage_loadTarga()
54 image->pixels = deMalloc(width * height * bpp); in deImage_create()
170 void* const memory = deMalloc(GRAPHICBUFFER_SIZE); in createGraphicBuffer()
138 MemPage* page = (MemPage*)deMalloc(sizeof(MemPage) + capacity); in MemPage_create()
654 deUint8* newData = (deUint8*)deMalloc(newCapacity); in Buffer_resize()728 rowPointers = (png_byte**)deMalloc(height * sizeof(png_byte*)); in compressImagePNG()