Home
last modified time | relevance | path

Searched refs:deMalloc (Results 1 – 13 of 13) sorted by relevance

/external/deqp/framework/delibs/debase/
DdeMemory.h32 #define DE_NEW(TYPE) ((TYPE*)deMalloc(sizeof(TYPE)))
35 void* deMalloc (size_t numBytes);
DdeMemory.c60 void* deMalloc (size_t numBytes) in deMalloc() function
92 void* ptr = deMalloc(numBytes); in deCalloc()
162 void* const basePtr = deMalloc(numBytes + alignBytes + sizeof(AlignedAllocHeader)); in deAlignedMalloc()
/external/deqp/framework/delibs/dethread/win32/
DdeThreadWin32.c73 ThreadEntry* entry = (ThreadEntry*)deMalloc(sizeof(ThreadEntry)); in deThread_create()
122 …SYSTEM_LOGICAL_PROCESSOR_INFORMATION* info = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION*)deMalloc(curSi… in getWin32ProcessorInfo()
DdeMutexWin32.c49 CRITICAL_SECTION* criticalSection = (CRITICAL_SECTION*)deMalloc(sizeof(CRITICAL_SECTION)); in deMutex_create()
/external/deqp/framework/delibs/dethread/unix/
DdeSemaphoreUnix.c36 sem_t* sem = (sem_t*)deMalloc(sizeof(sem_t)); in deSemaphore_create()
DdeMutexUnix.c40 pthread_mutex_t* mutex = deMalloc(sizeof(pthread_mutex_t)); in deMutex_create()
/external/deqp/framework/delibs/destream/
DdeRingbuffer.c62 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()
/external/deqp/framework/delibs/deimage/
DdeTarga.c66 buffer = deMalloc(bufSize); in deImage_loadTarga()
DdeImage.c54 image->pixels = deMalloc(width * height * bpp); in deImage_create()
/external/deqp/framework/platform/android/
DtcuAndroidInternals.cpp178 void* const memory = deMalloc(GRAPHICBUFFER_SIZE); in createGraphicBuffer()
/external/deqp/framework/delibs/depool/
DdeMemPool.c138 MemPage* page = (MemPage*)deMalloc(sizeof(MemPage) + capacity); in MemPage_create()
/external/deqp/framework/qphelper/
DqpTestLog.c659 deUint8* newData = (deUint8*)deMalloc(newCapacity); in Buffer_resize()
733 rowPointers = (png_byte**)deMalloc((size_t)height * sizeof(png_byte*)); in compressImagePNG()
/external/deqp/external/vulkancts/framework/vulkan/
DvkNullDriver.cpp249 void* const heapPtr = deMalloc((size_t)pAllocInfo->allocationSize); in allocateHeap()