Searched refs:realloc (Results 276 - 300 of 606) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_unittest.cc53 // realloc() tries to minimize copying (which debug allocators don't
613 void* new_p = realloc(p, start_sizes[s] + deltas[d]);
614 CHECK(p == new_p); // realloc should not allocate new memory
618 void* new_p = realloc(p, start_sizes[s] - deltas[d]);
619 CHECK(p == new_p); // realloc should not allocate new memory
948 ret = realloc(NULL, kTooBig);
1063 // We make sure we realloc to a big size, since some systems (OS
1066 p1 = realloc(p1, 30000);
1253 // Test that realloc doesn't always reallocate and copy memory.
1254 fprintf(LOGSTREAM, "Testing realloc\
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dnm-pdb.c98 ctx->syms = realloc(ctx->syms, sizeof(ctx->syms[0]) * ctx->syms_cap);
/external/chromium_org/third_party/webrtc/modules/video_capture/linux/
H A Ddevice_info_linux.cc229 _lastUsedDeviceName = (char*) realloc(_lastUsedDeviceName,
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler_hooks_android.c60 real_realloc = (realloc_t) dlsym(RTLD_NEXT, "realloc");
166 HEAP_PROFILER_EXPORT void* realloc(void* ptr, size_t size) { function
/external/compiler-rt/lib/asan/
H A Dasan_dll_thunk.cc295 WRAP_W_WW(realloc)
/external/dhcpcd/
H A Dcommon.c278 void *value = realloc(ptr, s);
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.c95 newlist = realloc(list->list, newmax * sizeof(char *));
/external/e2fsprogs/intl/
H A Dlocalcharset.c181 res_ptr = (char *) realloc (res_ptr, res_size + 1);
/external/e2fsprogs/misc/
H A Dlogsave.c108 n = realloc(outbuf, outbufsize + c);
/external/eigen/Eigen/src/Core/util/
H A DMemory.h99 /* ----- Hand made implementations of aligned malloc/free and realloc ----- */
121 * Since we know that our handmade version is based on std::realloc
122 * we can use std::realloc to implement efficient reallocation.
129 original = std::realloc(original,size+16);
141 *** Implementation of generic aligned realloc (when no realloc can be used)***
182 *** Implementation of portable aligned versions of malloc/free/realloc ***
266 result = std::realloc(ptr,new_size);
268 result = std::realloc(ptr,new_size);
332 return std::realloc(pt
[all...]
/external/elfutils/0.153/libelf/
H A Delf32_newphdr.c141 realloc (elf->state.ELFW(elf,LIBELFBITS).phdr,
H A Delf_getarsym.c203 Elf_Arsym *newp = (Elf_Arsym *) realloc (elf->state.ar.ar_sym,
/external/fio/
H A Dghelpers.c146 mt->text = realloc(mt->text, (mt->max_text + 1) * sizeof(char *));
/external/freetype/src/base/
H A Dftutil.c155 block2 = memory->realloc( memory, cur_size, new_size, block );
/external/icu/icu4c/source/common/
H A Dputilimp.h602 # define uprv_default_realloc(x,y) realloc(x,y)
/external/ipsec-tools/src/libipsec/
H A Dipsec_dump_policy.c257 newbuf = (char *)realloc(buf, buflen);
/external/iptables/extensions/
H A Dlibipt_DNAT.c54 info = realloc(info, size);
H A Dlibipt_SNAT.c54 info = realloc(info, size);
/external/jemalloc/include/jemalloc/
H A Djemalloc.h179 # define realloc je_realloc macro
/external/libcxx/include/support/ibm/
H A Dxlocale.h313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL)
/external/libcxx/test/language.support/support.runtime/
H A Dcstdlib.pass.cpp59 static_assert((std::is_same<decltype(std::realloc(0,0)), void*>::value), "");
/external/libnl/lib/
H A Dcache_mngr.c239 mngr->cm_assocs = realloc(mngr->cm_assocs,
/external/libsepol/src/
H A Duser_record.c181 roles_realloc = realloc(user->roles,
/external/libvpx/libvpx/examples/
H A Dtwopass_encoder.c87 stats->buf = realloc(stats->buf, stats->sz + pkt_size);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dstring.c405 *s = realloc(*s, *len);

Completed in 399 milliseconds

<<11121314151617181920>>