Searched
full:realloc (Results
901 -
925 of
1945) sorted by null
<<31323334353637383940>>
/external/chromium_org/third_party/openssl/openssl/crypto/ |
mem.c | 83 static void *(*realloc_func)(void *, size_t)= realloc;
|
/external/chromium_org/third_party/opus/src/src/ |
opus_compare.c | 51 return check_alloc(realloc(_ptr,_size));
|
/external/chromium_org/third_party/skia/include/core/ |
SkTypes.h | 59 /** Same as standard realloc(), but this one never returns null on failure. It will throw
|
/external/chromium_org/third_party/skia/src/core/ |
SkPathRef.h | 465 // Note that realloc could memcpy more than we need. It seems to be a win anyway. TODO:
|
SkString.cpp | 477 /* Seems we should use realloc here, since that is safe if it fails
|
/external/chromium_org/third_party/sqlite/src/src/ |
mem2.c | 14 ** SQLite will use the standard C-library malloc/realloc/free interface
|
/external/chromium_org/third_party/tcmalloc/vendor/ |
README | 20 -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free
|
/external/compiler-rt/lib/msan/ |
msan.cc | 165 // realloc -> GetStackTrace).
|
/external/compiler-rt/lib/profile/ |
GCDAProfiling.c | 101 write_buffer = realloc(write_buffer, size);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_stat.cc | 107 name[StatInt_realloc] = " realloc ";
|
/external/dhcpcd/ |
if-linux.c | 178 nbuf = realloc(buf, buflen);
|
/external/elfutils/libdwfl/ |
elf-from-memory.c | 187 unsigned char *newbuf = realloc (buffer, phnum * phentsize);
|
/external/elfutils/src/ |
findtextrel.c | 338 = (struct segments *) realloc (segments,
|
/external/icu4c/common/ |
uvector.cpp | 350 // We keep the original contents on the memory failure on realloc or bad minimumCapacity.
|
/external/icu4c/io/ |
ustdio.c | 166 /* Check for malloc/realloc failure. */
|
/external/icu4c/layout/ |
LETypes.h | 347 #define LE_GROW_ARRAY(array, newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
|
/external/icu4c/test/cintltst/ |
hpmufn.c | 114 retPtr = realloc(p, size+sizeof(ctest_AlignedMemory));
|
/external/icu4c/test/intltest/ |
v32test.cpp | 408 //TEST_ASSERT(buf != resizedBuf); // The buffer might have been realloc'd
|
/external/ipsec-tools/src/libipsec/ |
policy_parse.y | 525 n = realloc(pbuf, tlen);
|
/external/linux-tools-perf/ |
perf.c | 233 new_argv = realloc(new_argv, sizeof(char *) *
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_buffer.c | 569 nv->scratch.runout = REALLOC(nv->scratch.runout,
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_target.cpp | 371 REALLOC(relocInfo, n ? size : 0,
|
/external/mksh/src/ |
sh.h | 612 /* malloc(3)/realloc(3) -> free(3) for use by the memory allocator */ 614 #define realloc_osi(p,sz) realloc((p), (sz)) 617 /* malloc(3)/realloc(3) -> free(3) for use by mksh code */ 619 #define realloc_osfunc(p,sz) realloc((p), (sz)) [all...] |
/external/openssl/crypto/ |
mem.c | 83 static void *(*realloc_func)(void *, size_t)= realloc;
|
/external/qemu/ |
Makefile.target | 248 # memory leaks and attempts to free/realloc invalid pointers.
|
Completed in 524 milliseconds
<<31323334353637383940>>