Searched refs:realloc (Results 351 - 375 of 606) sorted by relevance

<<11121314151617181920>>

/external/ipsec-tools/src/racoon/
H A Dgetcertsbyname.c229 p = realloc(answer, buflen);
232 printf("realloc: %s", strerror(errno));
/external/libedit/src/
H A Dtokenizer.c70 #define tok_realloc(a, b) realloc(a, b)
/external/libunwind/tests/
H A Dtest-coredump-unwind.c108 char *msg1 = (char*) realloc(msg, prefix_len + used + strerr_len + msgeol_len + 3);
/external/libvpx/libvpx/
H A Dwebmenc.c255 new_cue_list = realloc(glob->cue_list,
260 fatal("Failed to realloc cue list.");
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dperf.c277 new_argv = realloc(new_argv, sizeof(char *) *
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h488 /// void *realloc(void *ptr, size_t size);
489 realloc, enumerator in enum:llvm::LibFunc::Func
/external/mesa3d/src/gallium/drivers/r600/
H A Dcompute_memory_pool.c213 pool->shadow = (uint32_t*)realloc(pool->shadow, new_size_in_dw*4);
/external/nanopb-c/
H A Dpb.h354 # define pb_realloc(ptr, size) realloc(ptr, size)
/external/openssl/crypto/
H A Dmem.c83 static void *(*realloc_func)(void *, size_t)= realloc;
/external/qemu/android/base/
H A DString.cpp242 mStr = static_cast<char*>(::realloc(oldStorage, newStorageSize));
/external/qemu/android/utils/
H A Dstralloc.c75 s->s = realloc( s->s, new_max );
/external/qemu/distrib/sdl-1.2.15/
H A Dandroid-configure.sh355 sdl_check_funcs malloc calloc realloc free alloc
/external/qemu/telephony/
H A Dremote_call.c232 char* new_buff = realloc( old_buff, msg2len );
/external/skia/include/core/
H A DSkTemplates.h341 void realloc(size_t count) {
/external/srec/portable/src/
H A Dpmalloc.c36 #undef realloc macro
H A Dpmemfixed.c27 #undef realloc macro
/external/valgrind/main/coregrind/
H A Dm_options.c177 out = VG_(realloc)("options.efn.2(multiple)", out, len); \
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_internal.c261 return realloc(ptr, size);
/external/wpa_supplicant_8/src/utils/
H A Dos_internal.c261 return realloc(ptr, size);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_internal.c261 return realloc(ptr, size);
/external/zlib/src/examples/
H A Denough.c287 vector = realloc(done[index].vec, length);
/external/chromium_org/third_party/icu/source/test/perf/collperf/
H A Dcollperf.cpp38 index = (int32_t *) realloc(index, sizeof(int32_t)); \
43 index = (int32_t *) realloc(index, sizeof(int32_t) * (count + 1)); \
45 data = (UNIT *) realloc(data, sizeof(UNIT) * index[count]); \
/external/e2fsprogs/e2fsck/
H A Drehash.c140 new_array = realloc(fd->harray,
229 new_mem = realloc(outdir->buf, blocks * fs->blocksize);
233 new_mem = realloc(outdir->hashes,
/external/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp38 index = (int32_t *) realloc(index, sizeof(int32_t)); \
43 index = (int32_t *) realloc(index, sizeof(int32_t) * (count + 1)); \
45 data = (UNIT *) realloc(data, sizeof(UNIT) * index[count]); \
/external/libpcap/
H A Dpcap-sita.c213 u->imsg = (char *)realloc(u->imsg, 1); /* and re-allocate the old large buffer into a new small one */
214 if (u->imsg == NULL) { /* oops, realloc call failed */
215 fprintf(stderr, "Warning...call to realloc() failed, value of errno is %d\n", errno);
687 if ((iff->name = realloc(iff->name, strlen(newname) + 1)) == NULL) { /* we now re-write the name stored in the interface list */
688 snprintf(errbuf, PCAP_ERRBUF_SIZE, "realloc: %s", pcap_strerror(errno));
708 if ((u->imsg = realloc(u->imsg, (u->len + len))) == NULL) /* extend the buffer for the new data */

Completed in 568 milliseconds

<<11121314151617181920>>