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

  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_memory.h 54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size)
  /external/mesa3d/src/gallium/auxiliary/util/
u_memory.h 54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _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.
  /ndk/sources/host-tools/make-3.81/
hash.c 24 #define REALLOC(o, t, n) ((t *) xrealloc ((o), sizeof (t) * (n)))
  /ndk/sources/host-tools/sed-4.2.1/
basicdefs.h 90 #define REALLOC(x,n,t) (VCAST(t *)ck_realloc(VCAST(VOID *)(x),(n)*sizeof(t)))
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 84 10090 REALLOC
189 __builtin_delete, calloc, realloc, memalign, and friends.
631 /*---------------------- realloc ----------------------*/
660 #define REALLOC(soname, fnname) \
670 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \
688 REALLOC(VG_Z_LIBC_SONAME, realloc);
689 REALLOC(SO_SYN_MALLOC, realloc);
692 REALLOC(VG_Z_LIBC_SONAME, realloc)
    [all...]
  /external/chromium_org/third_party/expat/files/lib/
xmlparse.c 563 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s)))
749 mtemp->realloc_fcn = realloc;
    [all...]
  /external/expat/lib/
xmlparse.c 563 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s)))
749 mtemp->realloc_fcn = realloc;
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp     [all...]

Completed in 1348 milliseconds