/external/srec/portable/include/ |
D | pmemory.h | 67 #define REALLOC(p, n) realloc(p, n) macro 127 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize, L(__FILE__), __LINE__)) macro 132 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize)) macro
|
/external/harfbuzz/src/ |
D | harfbuzz-impl.h | 88 #define REALLOC(_ptr,_newsz) \ macro 104 REALLOC(_ptr,(_newcnt)*sizeof(_type))
|
/external/harfbuzz_ng/src/hb-old/ |
D | harfbuzz-impl.h | 92 #define REALLOC(_ptr,_newsz) \ macro 108 REALLOC(_ptr,(_newcnt)*sizeof(_type))
|
/external/skia/src/ports/ |
D | SkMemory_brew.cpp | 31 void* p = REALLOC(addr, size | ALLOC_NO_ZMEM); in sk_realloc_throw()
|
/external/skia/legacy/src/ports/ |
D | SkMemory_brew.cpp | 31 void* p = REALLOC(addr, size | ALLOC_NO_ZMEM); in sk_realloc_throw()
|
/external/webkit/Source/JavaScriptCore/wtf/brew/ |
D | SystemMallocBrew.h | 54 return REALLOC(p, n | ALLOC_NO_ZMEM); in reallocBrew()
|
/external/srec/shared/src/ |
D | IntArrayListImpl.c | 81 int* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(int)); in IntArrayList_Add() 115 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(int)); in IntArrayList_Remove()
|
D | Int8ArrayListImpl.c | 82 asr_int8_t* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(asr_int8_t)); in Int8ArrayList_Add() 116 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(asr_int8_t)); in Int8ArrayList_Remove()
|
D | LStringImpl.c | 62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2))); in LString_Append()
|
/external/valgrind/main/coregrind/m_replacemalloc/ |
D | vg_replace_malloc.c | 634 #define REALLOC(soname, fnname) \ macro 662 REALLOC(VG_Z_LIBC_SONAME, realloc); 663 REALLOC(SO_SYN_MALLOC, realloc); 666 REALLOC(VG_Z_LIBC_SONAME, realloc); 667 REALLOC(SO_SYN_MALLOC, realloc);
|
/external/valgrind/unittest/ |
D | posix_tests.cc | 255 int *REALLOC; variable 273 (*REALLOC)++; in Worker() 291 REALLOC = (int*)realloc(NULL, sizeof(int)); in TEST() 308 ANNOTATE_EXPECT_RACE(REALLOC, "real race on a realloc-ed object"); in TEST() 327 free(REALLOC); in TEST()
|
/external/srec/portable/src/ |
D | ArrayListImpl.c | 82 void** temp = REALLOC(impl->contents, newCapacity * sizeof(void*)); in ArrayList_Insert_Internal() 129 if ((temp = REALLOC(impl->contents, newCapacity * sizeof(void*))) == NULL) in ArrayList_Remove_Internal()
|
D | phashtable.c | 283 REALLOC(table->entries, in PHashTableRehash()
|
/external/expat/lib/ |
D | xmlparse.c | 563 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s))) macro 1590 : (char *)REALLOC(buffer, len * 2)); in XML_Parse() 1904 return REALLOC(ptr, size); in XML_MemRealloc() 2074 char *temp = (char *)REALLOC(tag->buf, bufSize); in storeRawNames() 2428 char *temp = (char *)REALLOC(tag->buf, bufSize); in doContent() 2739 temp = (ATTRIBUTE *)REALLOC((void *)atts, attsSize * sizeof(ATTRIBUTE)); in storeAtts() 2744 temp2 = (XML_AttrInfo *)REALLOC((void *)attInfo, attsSize * sizeof(XML_AttrInfo)); in storeAtts() 2891 temp = (NS_ATT *)REALLOC(nsAtts, nsAttsSize * sizeof(NS_ATT)); in storeAtts() 3122 XML_Char *temp = (XML_Char *)REALLOC(b->uri, in addBinding() 4425 char *temp = (char *)REALLOC(groupConnector, groupSize *= 2); in doProlog() [all …]
|
/external/valgrind/main/drd/tests/ |
D | tsan_unittest.cpp | 5220 int *REALLOC; variable 5238 (*REALLOC)++; in Worker() 5254 REALLOC = (int*)realloc(NULL, sizeof(int)); in Run() 5276 FAST_MODE_INIT(REALLOC); in Run() 5277 ANNOTATE_EXPECT_RACE(REALLOC, "real race on a realloc-ed object"); in Run() 5304 free(REALLOC); in Run()
|
/external/bison/ |
D | ChangeLog-2012 | 11542 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers 12269 (REALLOC): Use xnrealloc, for likewise. 14016 (CALLOC, MALLOC, REALLOC): New macros.
|