Searched defs:pmalloc (Results 1 - 1 of 1) sorted by relevance

/external/srec/portable/src/
H A Dpmemory.c568 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);

Completed in 74 milliseconds