HomeSort by relevance Sort by last modified time
    Searched defs:REALLOC (Results 1 - 9 of 9) sorted by null

  /build/tools/apriori/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/iself/
debug.h 59 static inline void *REALLOC(void *ptr, unsigned int size) {
60 void *m = realloc(ptr, size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/isprelinked/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/lsd/
debug.h 59 static inline void *REALLOC(void *ptr, unsigned int size)
61 void *m = realloc(ptr, size);
62 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/soslim/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /development/tools/yuv420sp2rgb/
debug.h 59 static inline void *REALLOC(void *ptr, unsigned int size) {
60 void *m = realloc(ptr, size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /external/elfcopy/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /external/srec/portable/include/
pmemory.h 67 #define REALLOC(p, n) realloc(p, n)
87 #define realloc #error macro
125 * Portable realloc()
127 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize, L(__FILE__), __LINE__))
130 * Portable realloc()
132 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize))
204 * Reallocates data. Similar to realloc.
224 * Frees data allocated through pmalloc, pcalloc or realloc.
  /external/expat/lib/
xmlparse.c 552 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s)))
723 mtemp->realloc_fcn = realloc;
    [all...]

Completed in 188 milliseconds