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

  /external/srec/portable/include/
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);
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/
Android.mk 22 src/pmalloc.c \
  /external/srec/portable/src/
pmemory.c 568 void *pmalloc(size_t nbBytes, const LCHAR* tag, const LCHAR* file, int line) function
570 void *pmalloc(size_t nbBytes)
600 pfprintf(PSTDERR, L("ESR_INVALID_STATE: pmalloc() ran out of slots"));
711 result = (MemoryData *)pmalloc(nbItems * itemSize, tag, file, line);
713 result = (MemoryData *)pmalloc(nbItems * itemSize);
769 return pmalloc(newSize, NULL, file, line);
771 return pmalloc(newSize);
  /external/valgrind/main/include/
pub_tool_tooliface.h 448 void* (*pmalloc) ( ThreadId tid, SizeT n ),
    [all...]

Completed in 150 milliseconds