OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:deMalloc
(Results
1 - 11
of
11
) 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
72
ThreadEntry* entry = (ThreadEntry*)
deMalloc
(sizeof(ThreadEntry));
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/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 1257 milliseconds