Searched refs:realloc (Results 176 - 200 of 606) sorted by relevance

1234567891011>>

/external/ltrace/
H A Dlibltrace.c151 ltrace_callbacks[type] = realloc(ltrace_callbacks[type], (num_ltrace_callbacks[type]+1)*sizeof(callback_func));
/external/qemu/android/utils/
H A Dsystem.c66 block2 = realloc(block, size);
/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h53 #define realloc(_cc,_pt,_sz) VG_(arena_realloc)(VG_AR_DEMANGLE,(_cc),(_pt),(_sz)) macro
/external/zlib/src/contrib/puff/
H A Dpufftest.c76 if (size == *len || (swap = realloc(buf, size)) == NULL) {
/external/bison/lib/
H A Dprintf-parse.c62 /* malloc(), realloc(), free(). */
116 ? realloc (a->arg, memory_size) \
593 ? realloc (d->dir, memory_size)
/external/chromium_org/third_party/icu/source/samples/ugrep/
H A Dugrep.cpp286 charBuf = (char *)realloc(charBuf, rawFileLen+1); // Need error checking...
340 ucharBuf = (UChar *)realloc(ucharBuf, (destCap+1) * sizeof(UChar));
/external/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cc96 INTERCEPTOR(void*, realloc, void *q, uptr size) {
284 INTERCEPT_FUNCTION(realloc);
/external/e2fsprogs/intl/
H A Dlocalealias.c314 char *new_pool = (char *) realloc (string_space, new_size);
374 new_map = (struct alias_map *) realloc (map, (new_size
/external/elfutils/0.153/libdwfl/
H A Dcu.c103 mod->aranges = (realloc (aranges, naranges * sizeof aranges[0])
227 struct dwfl_cu **newvec = realloc (mod->cu, ((mod->ncu + 1)
/external/icu/icu4c/source/samples/ugrep/
H A Dugrep.cpp286 charBuf = (char *)realloc(charBuf, rawFileLen+1); // Need error checking...
340 ucharBuf = (UChar *)realloc(ucharBuf, (destCap+1) * sizeof(UChar));
/external/jemalloc/include/jemalloc/
H A Djemalloc_protos.h.in17 JEMALLOC_EXPORT void *@je_@realloc(void *ptr, size_t size);
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dperf-record.c11 realloc:
17 goto realloc;
/external/valgrind/main/massif/tests/
H A Ddeep-B.stderr.exp10 Massif: realloc
/external/valgrind/main/memcheck/tests/
H A Dfprw.stderr.exp31 Invalid free() / delete / delete[] / realloc()
/external/chromium_org/base/allocator/
H A Dallocator_unittest.cc413 void* new_p = realloc(p, start_sizes[s] + deltas[d]);
414 ASSERT_EQ(p, new_p); // realloc should not allocate new memory
418 void* new_p = realloc(p, start_sizes[s] - deltas[d]);
419 ASSERT_EQ(p, new_p); // realloc should not allocate new memory
431 reinterpret_cast<unsigned char*>(realloc(src, dst_size));
439 // Now make sure realloc works correctly even when we overflow the
451 p[i] = reinterpret_cast<int*>(realloc(p[i], 9000));
462 // Test that realloc to zero does not return NULL.
466 ptr = reinterpret_cast<char*>(realloc(ptr, 0));
H A Dallocator_shim.cc132 void* realloc(void* ptr, size_t size) { function
134 // realloc(0, 0) code path does not guarantee a non-NULL return, so be sure
153 // the requested new size is zero, realloc should free the ptr and return
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator.c300 realloc(self->binary_far_history,
302 self->far_bit_counts = realloc(self->far_bit_counts,
448 realloc(self->mean_bit_counts,
451 realloc(self->bit_counts, history_size * sizeof(*self->bit_counts));
453 realloc(self->histogram, (history_size + 1) * sizeof(*self->histogram));
/external/chromium_org/base/process/
H A Dmemory_linux.cc125 DIE_ON_OOM_2(realloc, void*)
/external/chromium_org/crypto/
H A Dcssm_init.cc32 return realloc(ptr, size);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dhpmufn.c109 retPtr = realloc(p, size+sizeof(ctest_AlignedMemory));
/external/chromium_org/third_party/icu/source/tools/icuinfo/
H A Dtestplug.c178 retPtr = realloc(mem, size);
180 fprintf(stderr, "MEM: realloc(%p, %d) = %p\n", mem, (int32_t)size, retPtr);
/external/chromium_org/third_party/libevent/
H A Dmin_heap.h114 if(!(p = (struct event**)realloc(s->p, a * sizeof *p)))
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/
H A Dvpx_mem.h114 # define realloc vpx_realloc macro
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxstats.c103 char *new_ptr = realloc(stats->buf.buf, new_sz);
110 fatal("Failed to realloc firstpass stats buffer.");
/external/chromium_org/third_party/libxml/src/
H A Dtriop.h74 # define TRIO_REALLOC(x,n) realloc((x),(n))

Completed in 537 milliseconds

1234567891011>>