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

  /external/srec/portable/include/
pmemory.h 127 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize, L(__FILE__), __LINE__))
132 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize))
206 * @param ptr A pointer previously allocated by pmalloc, pcalloc or prealloc.
218 PORTABLE_API void *prealloc(void* ptr, size_t newSize, const LCHAR* file, int line);
220 PORTABLE_API void *prealloc(void* ptr, size_t newSize);
226 * @param ptr A pointer previously allocated by pmalloc, pcalloc or prealloc.
  /external/srec/portable/src/
pmemory.c 734 void *prealloc(void *ptr, size_t newSize, const LCHAR *file, int line) function
736 void *prealloc(void *ptr, size_t newSize)
796 pfprintf(PSTDERR, L("OUT_OF_MEMORY: prealloc() failed at %s:%d"), __FILE__, __LINE__);

Completed in 232 milliseconds