Home
last modified time | relevance | path

Searched refs:REALLOC (Results 1 – 16 of 16) sorted by relevance

/external/srec/portable/include/
Dpmemory.h67 #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/
Dharfbuzz-impl.h88 #define REALLOC(_ptr,_newsz) \ macro
104 REALLOC(_ptr,(_newcnt)*sizeof(_type))
/external/harfbuzz_ng/src/hb-old/
Dharfbuzz-impl.h92 #define REALLOC(_ptr,_newsz) \ macro
108 REALLOC(_ptr,(_newcnt)*sizeof(_type))
/external/skia/src/ports/
DSkMemory_brew.cpp31 void* p = REALLOC(addr, size | ALLOC_NO_ZMEM); in sk_realloc_throw()
/external/skia/legacy/src/ports/
DSkMemory_brew.cpp31 void* p = REALLOC(addr, size | ALLOC_NO_ZMEM); in sk_realloc_throw()
/external/webkit/Source/JavaScriptCore/wtf/brew/
DSystemMallocBrew.h54 return REALLOC(p, n | ALLOC_NO_ZMEM); in reallocBrew()
/external/srec/shared/src/
DIntArrayListImpl.c81 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()
DInt8ArrayListImpl.c82 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()
DLStringImpl.c62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2))); in LString_Append()
/external/valgrind/main/coregrind/m_replacemalloc/
Dvg_replace_malloc.c634 #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/
Dposix_tests.cc255 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/
DArrayListImpl.c82 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()
Dphashtable.c283 REALLOC(table->entries, in PHashTableRehash()
/external/expat/lib/
Dxmlparse.c563 #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/
Dtsan_unittest.cpp5220 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/
DChangeLog-201211542 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12269 (REALLOC): Use xnrealloc, for likewise.
14016 (CALLOC, MALLOC, REALLOC): New macros.