Searched refs:pcalloc (Results 1 - 3 of 3) sorted by relevance

/external/srec/portable/include/
H A Dpmemory.h113 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__))
114 #define CALLOC_CLR(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__))
119 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize))
120 #define CALLOC_CLR(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize))
198 PORTABLE_API void *pcalloc(size_t nbItems, size_t itemSize, const LCHAR* tag, const LCHAR* file, int line);
200 PORTABLE_API void *pcalloc(size_t nbItems, size_t itemSize);
206 * @param ptr A pointer previously allocated by pmalloc, pcalloc or prealloc.
224 * Frees data allocated through pmalloc, pcalloc or realloc.
226 * @param ptr A pointer previously allocated by pmalloc, pcalloc or prealloc.
/external/valgrind/main/include/
H A Dpub_tool_tooliface.h480 void* (*pcalloc) ( ThreadId tid, SizeT nmemb, SizeT size1 ),
/external/srec/portable/src/
H A Dpmemory.c701 void *pcalloc(size_t nbItems, size_t itemSize, const LCHAR* tag, const LCHAR* file, int line) function
703 void *pcalloc(size_t nbItems, size_t itemSize)

Completed in 1014 milliseconds