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

  /external/srec/portable/include/
pmemory.h 113 #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/srec/portable/src/
pmemory.c 701 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 57 milliseconds