/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/harfbuzz/src/ |
harfbuzz-impl.h | 88 #define REALLOC(_ptr,_newsz) \ 104 REALLOC(_ptr,(_newcnt)*sizeof(_type))
|
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-impl.h | 92 #define REALLOC(_ptr,_newsz) \ 108 REALLOC(_ptr,(_newcnt)*sizeof(_type))
|
/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 187 __builtin_delete, calloc, realloc, memalign, and friends. 605 /*---------------------- realloc ----------------------*/ 634 #define REALLOC(soname, fnname) \ 644 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \ 662 REALLOC(VG_Z_LIBC_SONAME, realloc); 663 REALLOC(SO_SYN_MALLOC, realloc); 666 REALLOC(VG_Z_LIBC_SONAME, realloc) [all...] |
/external/valgrind/unittest/ |
posix_tests.cc | 255 int *REALLOC; 273 (*REALLOC)++; 291 REALLOC = (int*)realloc(NULL, sizeof(int)); 308 ANNOTATE_EXPECT_RACE(REALLOC, "real race on a realloc-ed object"); 327 free(REALLOC);
|
/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...] |