Searched refs:realloc (Results 501 - 525 of 606) sorted by relevance

<<2122232425

/external/e2fsprogs/intl/
H A Ddcigettext.c957 newmem = (transmem_block_t *) realloc (transmem_list,
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c446 new_lck = (struct tdb_lock_type *)realloc(
566 * We don't bother with realloc when the array shrinks, but if we have
1085 char *new_map_ptr = (char *)realloc(tdb->map_ptr,
1462 el->data = (unsigned char *)realloc(el->data,
3607 unsigned char *new_dptr = (unsigned char *)realloc(dbuf.dptr,
/external/e2fsprogs/misc/
H A Dbadblocks.c1133 t_patts_new = realloc(t_patts, sizeof(int) *
/external/elfutils/0.153/libcpu/
H A Di386_disasm.c458 buf = realloc (buf, 2 * bufsize);
H A Di386_lex.c238 * and can realloc() it to grow it, and should free() it to
1654 * immediate realloc on the next call.
1973 return (void *) realloc( (char *) ptr, size );
/external/elfutils/0.153/src/
H A Dldlex.c239 * and can realloc() it to grow it, and should free() it to
2446 * immediate realloc on the next call.
2765 return (void *) realloc( (char *) ptr, size );
/external/f2fs-tools/fsck/
H A Dfsck.c602 tree_mark = realloc(tree_mark, tree_mark_size);
/external/giflib/
H A Ddgif_lib.c388 if ((GifFile->SavedImages = (SavedImage *)realloc(GifFile->SavedImages,
/external/harfbuzz_ng/src/
H A Dhb-private.hh321 new_array = (Type *) realloc (array, new_allocated * sizeof (Type));
/external/icu/icu4c/source/tools/ctestfw/
H A Dctest.c937 return realloc(mem, size);
/external/libedit/src/
H A Dhistory.c94 #define h_realloc(a, b) realloc((a), (b))
/external/libvpx/libvpx/
H A Dvpxdec.c196 uint8_t *new_buf = realloc(*buffer, 2 * frame_size);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpmu-flex.c234 * and can realloc() it to grow it, and should free() it to
1501 * immediate realloc on the next call.
1817 return (void *) realloc( (char *) ptr, size );
/external/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp66 {LibFunc::realloc, ReallocLike, 2, 1, -1},
149 /// allocates or reallocates memory (either malloc, calloc, realloc, or strdup
157 /// NoAlias pointer (including malloc/calloc/realloc/strdup-like functions).
160 // it's safe to consider realloc as noalias since accessing the original
188 /// reallocates memory (such as realloc).
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_sanity.c661 reg->values = (union fi *) realloc( reg->values,
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_sanity.c383 reg->values = (union fi *) realloc( reg->values,
/external/mesa3d/src/mesa/main/
H A Duniforms.c103 realloc(uni->driver_storage,
/external/qemu/android/camera/
H A Dcamera-service.c144 char* new_buf = (char*)realloc(*str_buf, required_mem);
/external/qemu/hw/android/goldfish/
H A Dnand.c860 new_devs = realloc(nand_devs, sizeof(nand_devs[0]) * (nand_dev_count + 1));
/external/qemu/proxy/
H A Dproxy_http_rewriter.c88 char* s = realloc((char*)h->value, old+new+1);
/external/stlport/src/
H A Dallocators.cpp1083 return realloc(__p, __new_sz);
/external/valgrind/main/coregrind/
H A Dvgdb.c100 void * mem = realloc(ptr, size);
/external/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c534 void* MC_(realloc) ( ThreadId tid, void* p_old, SizeT new_szB ) function
541 if (complain_about_silly_args(new_szB, "realloc"))
558 /* can not realloc a range that was allocated with new or new [] */
659 and not used for, handling of the normal libc realloc()
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc281 S4 *x = (int*)Ident(realloc(0, sizeof(S4)));
284 x = (int*)Ident(realloc(x, 2 * sizeof(S4)));
287 x = (int*)Ident(realloc(x, 3 * sizeof(S4)));
291 x[2] = 1; // Init this here. Check that after realloc it is poisoned again.
292 x = (int*)Ident(realloc(x, 2 * sizeof(S4)));
295 x = (int*)Ident(realloc(x, 3 * sizeof(S4)));
/external/chromium_org/third_party/skia/src/device/xps/
H A DSkXPSDevice.cpp372 // CreateFontPackage over-allocates, realloc usually decreases the size substantially.
377 fontPackageBuffer.realloc(bytesWritten + extra);
402 fontPackageBuffer.realloc(bytesWritten);

Completed in 623 milliseconds

<<2122232425