Searched refs:realloc (Results 251 - 275 of 476) sorted by relevance

<<11121314151617181920

/external/valgrind/coregrind/m_demangle/
H A Ddyn-string.c168 ds->s = (char *) realloc (ds->s, ds->allocated);
/external/valgrind/coregrind/m_replacemalloc/
H A Dvg_replace_malloc.c198 __builtin_delete, calloc, realloc, memalign, and friends.
638 /*---------------------- realloc ----------------------*/
677 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \
695 REALLOC(VG_Z_LIBC_SONAME, realloc);
696 REALLOC(SO_SYN_MALLOC, realloc);
699 REALLOC(VG_Z_LIBC_SONAME, realloc);
700 REALLOC(SO_SYN_MALLOC, realloc);
/external/valgrind/memcheck/tests/
H A Dxml1.stderr.exp201 <what>Invalid free() / delete / delete[] / realloc()</what>
293 <what>Invalid free() / delete / delete[] / realloc()</what>
/external/zlib/src/contrib/testzlib/
H A Dtestzlib.c226 CprPtr=(unsigned char*)realloc(CprPtr,lSizeCpr);
/external/llvm/lib/Support/
H A Dregcomp.c1085 ptr = (cset *)realloc((char *)p->g->sets, nc * sizeof(cset));
1090 ptr = (uch *)realloc((char *)p->g->setbits, nbytes);
1218 np = realloc(cs->multis, cs->smultis);
1430 sp = (sop *)realloc(p->strip, size*sizeof(sop));
1452 g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop));
/external/squashfs-tools/squashfs-tools/
H A Dmksquashfs.c455 void *it = realloc(inode_table, inode_size +
482 void *dc = realloc(data_cache, cache_size +
596 void *it = realloc(inode_table, inode_size +
632 void *dt = realloc(directory_table,
768 pathname = realloc(pathname, *size);
830 subpath = realloc(subpath, size);
1126 buff = realloc(dir->buff, dir->size += SQUASHFS_METADATA_SIZE);
1152 dir->index = realloc(dir->index,
1207 void *dc = realloc(directory_data_cache,
1243 void *dt = realloc(directory_tabl
[all...]
/external/jhead/
H A Dmain.c178 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
526 *buf = realloc(*buf, bufLen);
/external/libpcap/
H A Dsf-pcap-ng.c304 p->buffer = realloc(p->buffer, bhdr.total_length);
553 ps->ifaces = realloc(ps->ifaces, ps->ifaces_size * sizeof (struct pcap_ng_if));
/external/libxml2/
H A Dglobals.c121 * The variable holding the libxml realloc() implementation
125 xmlReallocFunc xmlRealloc = (xmlReallocFunc) realloc;
538 gs->xmlRealloc = (xmlReallocFunc) realloc;
/external/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_cs.c287 csc->relocs_bo = (struct radeon_bo**)realloc(csc->relocs_bo, size);
290 csc->relocs = (struct drm_radeon_cs_reloc*)realloc(csc->relocs, size);
/external/skia/src/core/
H A DSkTextBlob.cpp461 fStorage.realloc(fStorageSize);
584 fStorage.realloc(fStorageUsed);
/external/sqlite/dist/orig/
H A Dsqlite3ext.h121 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
369 #define sqlite3_realloc sqlite3_api->realloc
/external/sqlite/dist/
H A Dsqlite3ext.h121 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
369 #define sqlite3_realloc sqlite3_api->realloc
/external/valgrind/coregrind/
H A Dm_tooliface.c340 void* (*realloc) ( ThreadId, void*, SizeT ),
354 VG_(tdict).tool_realloc = realloc;
/external/blktrace/btt/
H A Dseek.c175 mp->modes = realloc(mp->modes, (mp->nmds + 1) *
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc348 WRAP_W_WW(realloc)
/external/e2fsprogs/e2fsck/
H A Dprofile.c276 new_array = realloc(array, sizeof(char *) * (max+1));
426 p = realloc(line, line_size);
990 newptr = realloc(b->base, newsize);
1019 char *newptr = realloc(prof_buf.base, prof_buf.cur);
/external/e2fsprogs/lib/ext2fs/
H A Ddosio.c338 newparts = (PARTITION**)realloc(partitions, sizeof(PARTITION) * npart);
/external/e2fsprogs/util/
H A Dsymlinks.c344 cwd = realloc(cwd, strlen(cwd)+2);
346 fprintf(stderr, "realloc() failed\n");
/external/elfutils/src/libdwfl/
H A Delf-from-memory.c171 unsigned char *newbuf = realloc (buffer, phnum * phentsize);
/external/elfutils/src/tests/
H A Dbacktrace-data.c116 filename = realloc (filename, filename_len + 2);
/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/libvncserver/libvncserver/
H A Dzrleoutstream.c55 buffer->start = realloc(buffer->start, size);

Completed in 693 milliseconds

<<11121314151617181920