Searched refs:realloc (Results 126 - 150 of 606) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dlibc_override_redefine.h71 void* realloc(void* p, size_t s) __THROW { return tc_realloc(p, s); }
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_large_unittest.cc39 #include <stdlib.h> // for malloc, free, realloc
56 void* p3 = realloc(p2, size);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dlibc_override_redefine.h71 void* realloc(void* p, size_t s) __THROW { return tc_realloc(p, s); }
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_large_unittest.cc39 #include <stdlib.h> // for malloc, free, realloc
56 void* p3 = realloc(p2, size);
/external/clang/test/Analysis/
H A Dmalloc-interprocedural.c8 void *realloc(void *ptr, size_t size);
/external/deqp/framework/delibs/debase/
H A DdeMemory.c108 return realloc(ptr, (size_t)numBytes);
/external/e2fsprogs/e2fsck/
H A Dargv_parse.c66 new_argv = realloc(argv,
H A Dmtrace.c57 /* This function is called when the block being alloc'd, realloc'd, or
115 hdr = (__ptr_t) realloc (ptr, size);
120 /* Failed realloc. */
/external/e2fsprogs/lib/ss/
H A Dparse.c42 #define NEW_ARGV(old,n) (char **)realloc((char *)old,\
/external/freetype/src/raster/
H A Dftmisc.h78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/ipsec-tools/src/racoon/
H A Ddebugrm.h47 #define racoon_realloc(old, sz) realloc((old), (sz))
/external/libedit/src/
H A Del.h98 #define el_realloc(a,b) realloc(a, b)
/external/libexif/libexif/
H A Dexif-mem.c23 return realloc (d, (size_t) ds);
/external/libnl/lib/
H A Ddata.c105 data->d_data = realloc(data->d_data, data->d_size + size);
/external/libogg/include/ogg/
H A Dos_types.h24 #define _ogg_realloc realloc
/external/libsepol/src/
H A Dutil.c45 * than be smart about it, for now we realloc() the array each
48 *a = (uint32_t *) realloc(*a, (*cnt + 1) * sizeof(uint32_t));
/external/oprofile/libpopt/
H A Dpoptparse.c89 argv = realloc(argv, sizeof(*argv) * argvAlloced);
186 argstr = realloc(argstr, maxargvlen);
215 argstr = realloc(argstr, maxargvlen);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
H A Dftmisc.h78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/skia/src/core/
H A DSkWriter32.cpp70 fInternal.realloc(fCapacity);
/external/speex/libspeex/
H A Dos_support.h69 /** Speex wrapper for realloc. To do your own dynamic allocation, all you need to do is replace this function, speex_alloc and speex_free */
73 return realloc(ptr, size);
/external/valgrind/main/memcheck/tests/
H A Dorigin1-yes.stderr.exp31 Undef 5 of 8 (realloc)
35 at 0x........: realloc (vg_replace_malloc.c:...)
H A Dpdb-realloc2.c2 /* A test which involves copying (using realloc) a block containing
59 p = realloc(p, size+i);
/external/elfutils/0.153/libdwfl/
H A Dgzip.c108 char *b = realloc (buffer, more);
110 b = realloc (buffer, more -= 1024);
119 buffer = realloc (buffer, end) ?: end == 0 ? NULL : buffer;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcpumap.c63 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
74 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
156 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
H A Dthread_map.c108 tmp = realloc(threads, (sizeof(*threads) +
188 nt = realloc(threads, (sizeof(*threads) +
252 nt = realloc(threads, sizeof(*threads) + sizeof(pid_t) * ntasks);

Completed in 469 milliseconds

1234567891011>>