HomeSort by relevance Sort by last modified time
    Searched refs:deMalloc (Results 1 - 12 of 12) sorted by null

  /external/deqp/framework/delibs/debase/
deMemory.h 32 #define DE_NEW(TYPE) ((TYPE*)deMalloc(sizeof(TYPE)))
35 void* deMalloc (int numBytes);
deMemory.c 46 void* deMalloc (int numBytes)
78 void* ptr = deMalloc(numBytes);
87 deUintptr origPtr = (deUintptr)deMalloc(numBytes + ptrSize + alignBytes);
  /external/deqp/framework/delibs/dethread/unix/
deMutexUnix.c 40 pthread_mutex_t* mutex = deMalloc(sizeof(pthread_mutex_t));
deSemaphoreUnix.c 36 sem_t* sem = (sem_t*)deMalloc(sizeof(sem_t));
  /external/deqp/framework/delibs/dethread/win32/
deThreadWin32.c 73 ThreadEntry* entry = (ThreadEntry*)deMalloc(sizeof(ThreadEntry));
122 SYSTEM_LOGICAL_PROCESSOR_INFORMATION* info = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION*)deMalloc(curSize);
deMutexWin32.c 49 CRITICAL_SECTION* criticalSection = (CRITICAL_SECTION*)deMalloc(sizeof(CRITICAL_SECTION));
  /external/deqp/framework/delibs/destream/
deRingbuffer.c 62 ringbuffer->buffer = (deUint8*)deMalloc(sizeof(deUint8) * blockSize * blockCount);
63 ringbuffer->blockUsage = (deInt32*)deMalloc(sizeof(deUint32) * blockCount);
  /external/deqp/framework/delibs/deimage/
deTarga.c 66 buffer = deMalloc(bufSize);
deImage.c 54 image->pixels = deMalloc(width * height * bpp);
  /external/deqp/framework/platform/android/
tcuAndroidInternals.cpp 170 void* const memory = deMalloc(GRAPHICBUFFER_SIZE);
  /external/deqp/framework/delibs/depool/
deMemPool.c 103 deBool enableDebugAllocs; /*!< If true, always allocates using deMalloc(). */
138 MemPage* page = (MemPage*)deMalloc(sizeof(MemPage) + capacity);
  /external/deqp/framework/qphelper/
qpTestLog.c 654 deUint8* newData = (deUint8*)deMalloc(newCapacity);
728 rowPointers = (png_byte**)deMalloc(height * sizeof(png_byte*));
    [all...]

Completed in 197 milliseconds