Searched refs:deMalloc (Results 1 – 13 of 13) sorted by relevance
32 #define DE_NEW(TYPE) ((TYPE*)deMalloc(sizeof(TYPE)))35 void* deMalloc (size_t numBytes);
60 void* deMalloc (size_t numBytes) in deMalloc() function92 void* ptr = deMalloc(numBytes); in deCalloc()162 void* const basePtr = deMalloc(numBytes + alignBytes + sizeof(AlignedAllocHeader)); in deAlignedMalloc()
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) * (size_t)blockSize * (size_t)blockCount); in deRingbuffer_create()63 ringbuffer->blockUsage = (deInt32*)deMalloc(sizeof(deUint32) * (size_t)blockCount); in deRingbuffer_create()
66 buffer = deMalloc(bufSize); in deImage_loadTarga()
54 image->pixels = deMalloc(width * height * bpp); in deImage_create()
178 void* const memory = deMalloc(GRAPHICBUFFER_SIZE); in createGraphicBuffer()
138 MemPage* page = (MemPage*)deMalloc(sizeof(MemPage) + capacity); in MemPage_create()
659 deUint8* newData = (deUint8*)deMalloc(newCapacity); in Buffer_resize()733 rowPointers = (png_byte**)deMalloc((size_t)height * sizeof(png_byte*)); in compressImagePNG()
249 void* const heapPtr = deMalloc((size_t)pAllocInfo->allocationSize); in allocateHeap()