Searched
full:realloc (Results
401 -
425 of
1526) sorted by null
<<11121314151617181920>>
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_allocator_testlib.cc | 98 void *realloc(void *p, size_t size) { function
|
/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_mman_test.cc | 80 // Strictly saying this is incorrect, realloc(NULL, N) is equivalent to
|
/external/dropbear/ |
scpmisc.c | 75 new_ptr = realloc(ptr, new_size);
|
/external/e2fsprogs/debugfs/ |
lsdel.c | 154 delarray = realloc(delarray,
|
/external/e2fsprogs/e2fsck/ |
profile_helpers.c | 95 newlist = realloc(list->list, newmax * sizeof(char *));
|
/external/e2fsprogs/lib/ss/ |
help.c | 153 dirs = (char **)realloc((char *)dirs,
|
/external/e2fsprogs/misc/ |
logsave.c | 108 n = realloc(outbuf, outbufsize + c);
|
/external/elfutils/tests/ |
allregs.c | 136 state->info = realloc (state->info, (regno + 1) * sizeof state->info[0]);
|
/external/freetype/src/base/ |
ftsystem.c | 297 memory->realloc = ft_realloc;
|
/external/libppp/src/ |
iface.c | 179 realloc(iface->addr, (iface->addrs + 1) * sizeof iface->addr[0]); 422 /* Don't bother realloc()ing - we have little to gain */ 483 addr = (struct iface_addr *)realloc 486 log_Printf(LogERROR, "iface_inAdd: realloc: %s\n", strerror(errno));
|
/external/libsepol/src/ |
user_record.c | 181 roles_realloc = realloc(user->roles,
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
c_mac.php | 106 'malloc', 'realloc', 'free', 'abort', 'exit', 'atexit', 'system', 'getenv',
|
/external/libvpx/libvpx/vpx_mem/ |
vpx_mem.h | 117 # define realloc vpx_realloc macro
|
/external/openssh/openbsd-compat/ |
glob.c | 738 * This assumes the BSD realloc, which only copies the block when its size 739 * crosses a power-of-two boundary; for v7 realloc, this would cause quadratic 784 pathv = realloc(pglob->gl_pathv, newn * sizeof(*pathv)); 796 statv = realloc(pglob->gl_statv, newn * sizeof(*statv));
|
setenv.c | 105 P = (char **)realloc(lastenv, sizeof(char *) * (cnt + 2));
|
/external/qemu/android/utils/ |
jpeg-compress.c | 78 dst->jpeg_buf = realloc(dst->jpeg_buf, dst->size);
|
system.h | 36 /* checked realloc, only returns NULL if size if 0 */
|
/external/qemu/memcheck/ |
memcheck.c | 60 * If 2, access violation has occurred in 'realloc' routine. 71 proc->image_path, proc->pid, ptr, routine == 1 ? "free" : "realloc", 332 // Enable invalid free / realloc pointer tracing. 537 qdesc.query_pid, qdesc.routine == 1 ? "free" : "realloc");
|
/external/qemu/ |
path.c | 96 root = realloc(root, sizeof(*root)
|
/external/skia/legacy/src/core/ |
SkMemory_stdlib.cpp | 195 void* p = realloc(addr, size);
|
/external/skia/src/core/ |
SkMemory_stdlib.cpp | 195 void* p = realloc(addr, size);
|
/external/stlport/stlport/stl/ |
_cstdlib.h | 75 using _STLP_VENDOR_CSTD::realloc;
|
/external/valgrind/main/coregrind/m_demangle/ |
vg_libciface.h | 53 #define realloc(_cc,_pt,_sz) VG_(arena_realloc)(VG_AR_DEMANGLE,(_cc),(_pt),(_sz)) macro
|
/external/valgrind/main/include/ |
pub_tool_mallocfree.h | 43 extern void* VG_(realloc) ( HChar* cc, void* p, SizeT size );
|
/external/valgrind/main/memcheck/tests/ |
custom_alloc.c | 133 // invalid realloc
|
Completed in 2577 milliseconds
<<11121314151617181920>>