HomeSort by relevance Sort by last modified time
    Searched defs:REALLOC (Results 1 - 7 of 7) 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/mesa3d/src/gallium/auxiliary/util/
u_memory.h 54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size)
  /ndk/sources/host-tools/make-3.81/
hash.c 24 #define REALLOC(o, t, n) ((t *) xrealloc ((o), sizeof (t) * (n)))
  /external/valgrind/coregrind/m_replacemalloc/
vg_replace_malloc.c 84 10090 REALLOC
198 __builtin_delete, calloc, realloc, memalign, and friends.
728 /*---------------------- realloc ----------------------*/
757 #define REALLOC(soname, fnname) \
767 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \
785 REALLOC(VG_Z_LIBC_SONAME, realloc);
786 REALLOC(SO_SYN_MALLOC, realloc);
789 REALLOC(VG_Z_LIBC_SONAME, realloc)
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
regex.c 133 char *realloc ();
324 # define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
371 # define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize)
395 # define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
    [all...]
  /external/expat/lib/
xmlparse.c 571 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s)))
784 mtemp->realloc_fcn = realloc;
    [all...]
  /external/valgrind/drd/tests/
tsan_unittest.cpp     [all...]

Completed in 190 milliseconds