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

  /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.
  /build/tools/apriori/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
cmdline.c 119 *arr = (char **)REALLOC(*arr, size * sizeof(char *)); \
rangesort.c 111 ranges->array = REALLOC(ranges->array,
apriori.c 515 (section_info_t *)REALLOC(source->relocation_sections,
    [all...]
  /build/tools/iself/
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);
  /build/tools/isprelinked/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/lsd/
cmdline.c 112 *dirs = (char **)REALLOC(*dirs, size * sizeof(char *));
debug.h 59 static inline void *REALLOC(void *ptr, unsigned int size)
61 void *m = realloc(ptr, size);
62 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
lsd.c 213 (section_info_t *)REALLOC(source->relocations,
461 (source_t **)REALLOC(source->next_export,
687 REALLOC(dep->satisfied_execs,
696 source->lib_deps = REALLOC(source->lib_deps,
  /build/tools/soslim/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /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/elfcopy/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
fixdwarf.c 324 s_value_free_lists = REALLOC(s_value_free_lists,
rangesort.c 129 ranges->array = REALLOC(ranges->array,
  /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,
  /external/expat/lib/
xmlparse.c 552 #define REALLOC(p,s) (parser->m_mem.realloc_fcn((p),(s)))
723 mtemp->realloc_fcn = realloc;
    [all...]

Completed in 956 milliseconds