Searched refs:pmalloc (Results 1 – 4 of 4) sorted by relevance
/external/srec/portable/include/ |
D | pmemory.h | 101 #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/ |
D | pmemory.c | 568 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/ |
D | Android.mk | 22 src/pmalloc.c \
|
/external/srec/doc/ |
D | srec.doxygen | 539 */portable/include/pmalloc.h \
|