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

  /external/skia/src/ports/
SkMemory_brew.cpp 40 void* p = REALLOC(addr, size | ALLOC_NO_ZMEM);
  /external/webkit/Source/JavaScriptCore/wtf/brew/
SystemMallocBrew.h 54 return REALLOC(p, n | ALLOC_NO_ZMEM);
62 #define realloc(p, n) reallocBrew(p, n) macro
  /external/harfbuzz/src/
harfbuzz-impl.h 88 #define REALLOC(_ptr,_newsz) \
104 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.
  /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/srec/shared/src/
IntArrayListImpl.c 81 int* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(int));
115 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(int));
LStringImpl.c 62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2)));
Int8ArrayListImpl.c 82 asr_int8_t* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(asr_int8_t));
116 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(asr_int8_t));
  /external/srec/portable/src/
ArrayListImpl.c 82 void** temp = REALLOC(impl->contents, newCapacity * sizeof(void*));
129 if ((temp = REALLOC(impl->contents, newCapacity * sizeof(void*))) == NULL)
phashtable.c 283 REALLOC(table->entries,
  /ndk/sources/host-tools/sed-4.2.1/sed/
regexp.c 193 regs->start = REALLOC (regs->start, need_regs, regoff_t);
194 regs->end = REALLOC (regs->end, need_regs, regoff_t);
utils.c 463 /* Panic on failing realloc */
478 ret = realloc(ptr, size);
563 try = realloc(b->b, alen); /* Note: *not* the REALLOC() macro! */
567 try = REALLOC(b->b, alen, char);
compile.c 442 v->v = REALLOC(v->v, v->v_allocated, struct sed_cmd);
    [all...]
execute.c 205 keeping realloc() calls under control by padding for future growth. */
234 lb->text = REALLOC(lb->text, inactive + lb->alloc, char);
451 /* Use FREE()+MALLOC() instead of REALLOC() to
    [all...]
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 158 __builtin_delete, calloc, realloc, memalign, and friends.
475 /*---------------------- realloc ----------------------*/
485 MALLOC_TRACE("realloc(%p,%p,%llu)", zone, ptrV, (ULong)new_size ); \
501 #define REALLOC(soname, fnname) \
509 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \
525 REALLOC(VG_Z_LIBC_SONAME, realloc);
527 REALLOC(VG_Z_LIBC_SONAME, realloc_common);
885 REALLOC(NONE,tc_realloc);
896 REALLOC(NONE, PyObject_Realloc)
    [all...]
  /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/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);
  /ndk/sources/host-tools/make-3.81/
hash.c 24 #define REALLOC(o, t, n) ((t *) xrealloc ((o), sizeof (t) * (n)))
  /external/expat/lib/
xmlparse.c 552 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s)))
723 mtemp->realloc_fcn = realloc;
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp     [all...]

Completed in 521 milliseconds