Home
last modified time | relevance | path

Searched refs:pmalloc (Results 1 – 4 of 4) sorted by relevance

/external/srec/portable/include/
Dpmemory.h101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__))
106 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes))
176 PORTABLE_API void *pmalloc(size_t nbBytes, const LCHAR* tag, const LCHAR* file, int line);
178 PORTABLE_API void *pmalloc(size_t nbBytes);
/external/srec/portable/src/
Dpmemory.c568 void *pmalloc(size_t nbBytes, const LCHAR* tag, const LCHAR* file, int line) in pmalloc() function
570 void *pmalloc(size_t nbBytes) in pmalloc()
711 result = (MemoryData *)pmalloc(nbItems * itemSize, tag, file, line); in pcalloc()
713 result = (MemoryData *)pmalloc(nbItems * itemSize); in pcalloc()
769 return pmalloc(newSize, NULL, file, line); in prealloc()
771 return pmalloc(newSize); in prealloc()
/external/srec/portable/
DAndroid.mk22 src/pmalloc.c \
/external/srec/doc/
Dsrec.doxygen539 */portable/include/pmalloc.h \