Searched refs:realloc (Results 426 - 450 of 476) sorted by relevance

<<11121314151617181920

/external/mdnsresponder/mDNSPosix/
H A DNetMonitor.c218 HostEntry *newHosts = realloc(list->hosts, newMax * sizeof(HostEntry));
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_jpx_opj.cpp468 realloc(image->comps, (image->numcomps + 2) * sizeof(opj_image_comp_t));
/external/ppp/pppd/
H A Dmain.c1675 char **newenv = realloc(script_env, new_n * sizeof(char *));
/external/speex/libspeex/
H A Dresample.c67 static void *speex_realloc (void *ptr, int size) {return realloc(ptr, size);}
/external/strace/
H A Dstrace.c680 struct tcb **newtab = realloc(tcbtab, tcbtabsize * 2 * sizeof(tcbtab[0]));
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc563 TSAN_INTERCEPTOR(void*, realloc, void *p, uptr size) {
569 SCOPED_INTERCEPTOR_RAW(realloc, p, size);
2531 TSAN_INTERCEPT(realloc);
/external/selinux/libsepol/src/
H A Dmodule_to_cil.c436 new_stack = realloc(stack->stack, sizeof(*stack->stack) * (stack->size * 2));
779 name_arr = realloc(name_arr, sizeof(*name_arr) * max);
3929 d = realloc(d, max_len);
/external/sqlite/dist/orig/
H A Dshell.c451 zLine = realloc(zLine, nLine);
1117 zIn = (char *)realloc(zIn, len);
4192 zSql = realloc(zSql, nAlloc);
4518 azCmd = realloc(azCmd, sizeof(azCmd[0])*nCmd);
/external/sqlite/dist/
H A Dshell.c457 zLine = realloc(zLine, nLine);
1123 zIn = (char *)realloc(zIn, len);
4214 zSql = realloc(zSql, nAlloc);
4540 azCmd = realloc(azCmd, sizeof(azCmd[0])*nCmd);
/external/e2fsprogs/lib/ext2fs/
H A Dext2fs.h1594 p = realloc(p, size);
/external/fio/
H A Dserver.c254 tmp = realloc(cmdret, cmd_size);
H A Doptions.c89 bssplit = realloc(bssplit, o->bssplit_nr[ddir]
267 error = realloc(error, td->o.ignore_error_nr[etype]
/external/iptables/libxtables/
H A Dxtables.c296 if ((p = realloc(ptr, size)) == NULL) {
297 perror("ip[6]tables: realloc failed");
/external/libmtp/src/
H A Dlibusb-glue.c1054 priv->data = realloc (priv->data, priv->curoff+sendlen);
H A Dlibmtp.c2247 newprops = realloc(params->objects[i].mtpprops,(params->objects[i].nrofmtpprops+1)*sizeof(MTPProperties));
3673 localtypes = (uint16_t *) realloc(localtypes, (params->deviceinfo.ImageFormats_len+1) * sizeof(uint16_t));
3679 localtypes = (uint16_t *) realloc(localtypes, (params->deviceinfo.ImageFormats_len+1) * sizeof(uint16_t));
/external/libxml2/os400/iconv/bldcsndfa/
H A Dbldcsndfa.c611 s = (t_powerset *) realloc(s,
/external/linux-tools-perf/src/tools/perf/util/
H A Devsel.c199 nbf = realloc(bf, alloc_size);
H A Dsession.c1215 void *new = realloc(buf, size);
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp1081 case LibFunc::realloc:
/external/mesa3d/src/glx/
H A Dindirect_vertex_array.c408 GLubyte *temp = realloc(arrays->array_info_cache_base,
/external/valgrind/massif/
H A Dms_main.c315 // alloc function: realloc (which uses malloc); valloc,
327 DO("realloc" );
493 // - malloc/calloc/realloc/memalign/new/new[];
617 parent->children = VG_(realloc)( "ms.main.acx.2",
1615 // Nb: --ignore-fn is tricky for realloc. If the block's original alloc was
1616 // ignored, but the realloc is not requested to be ignored, and we are
1617 // shrinking the block, then we have to ignore the realloc -- otherwise we
1633 return NULL; // must have been a bogus realloc()
1653 // realloc as well.
1668 // Nb: if realloc fail
[all...]
/external/bison/lib/
H A Dvasnprintf.c71 #include <stdlib.h> /* abort(), malloc(), realloc(), free() */
1862 memory = (DCHAR_T *) realloc (result, memory_size); \
5380 (because it uses realloc(). */
5555 memory = (DCHAR_T *) realloc (result, (length + 1) * sizeof (DCHAR_T));
/external/openssh/
H A Dsshkey.c214 if ((tmp = realloc(ret, rlen + nlen + 2)) == NULL) {
1903 key->cert->principals = realloc(key->cert->principals,
/external/valgrind/massif/tests/
H A Dculling1.stderr.exp10 Massif: realloc
/external/icu/icu4c/source/tools/tzcode/
H A Dzic.c444 #define erealloc(ptr, size) memcheck(realloc(ptr, size))

Completed in 8787 milliseconds

<<11121314151617181920