Searched refs:realloc (Results 51 - 75 of 606) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Dmalloc-plist.c8 void *realloc(void *ptr, size_t size);
27 tmp = (char*)realloc(buf, 0x1000000);
68 tmp = (char*)realloc(buf, 0x1000000);
H A Dmalloc.c11 void *realloc(void *ptr, size_t size);
35 realloc(p,0);
36 realloc(p,0); // expected-warning{{Attempt to free released memory}}
41 int *q = realloc(p,0); // no-warning
48 char *q = (char*)realloc(p, sizeIn);
55 q = realloc(q, 20);
59 // p should be freed if realloc fails.
62 char *r = realloc(p, 12+1);
72 char *r = realloc(p, 0);
82 char *r = realloc(
[all...]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopj_malloc.h169 #define opj_realloc(m, s) ((size_t)(s) >= (size_t)-0x100 ? NULL : realloc(m, s))
171 #define opj_realloc(m, s) realloc(m, s)
186 #pragma GCC poison malloc calloc realloc free
/external/chromium_org/ppapi/native_client/src/untrusted/nacl_ppapi_util/
H A Dstring_buffer.cc54 new_buffer = reinterpret_cast<char *>(realloc(buffer_, 2 * nbytes_));
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftsystem.h167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_memory_stdc.h48 realloc(_old_ptr, _new_size + 0*(_old_size))
/external/chromium_org/third_party/skia/src/ports/
H A DSkMemory_malloc.cpp44 return throw_on_failure(size, realloc(addr, size));
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc13 // We simply define functions like malloc, free, realloc, etc.
30 DECLARE_REAL_AND_INTERCEPTOR(void*, realloc, void *ptr, uptr size)
38 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebug
45 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
99 INTERCEPTOR(void*, realloc, void *ptr, uptr size) {
/external/elfutils/0.153/lib/
H A Dxmalloc.c77 p = realloc (p, n);
/external/freetype/include/
H A Dftsystem.h167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/jemalloc/include/jemalloc/internal/
H A Dpublic_namespace.h7 #define je_realloc JEMALLOC_N(realloc)
/external/libselinux/src/
H A Dfgetfilecon.c31 newbuf = realloc(buf, size);
H A Dgetfilecon.c31 newbuf = realloc(buf, size);
H A Dgetpeercon.c30 newbuf = realloc(buf, size);
H A Dlgetfilecon.c31 newbuf = realloc(buf, size);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dalias.c44 *argv = realloc(*argv, sizeof(char*) * size);
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_memory_stdc.h48 realloc(_old_ptr, _new_size + 0*(_old_size))
/external/nanopb-c/extra/
H A Dpb_syshdr.h61 void *realloc(void *ptr, size_t size);
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsystem.h173 * realloc ::
183 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftsystem.h173 * realloc ::
183 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/qemu/distrib/libselinux/src/
H A Dfgetfilecon.c31 newbuf = realloc(buf, size);
H A Dgetfilecon.c31 newbuf = realloc(buf, size);
H A Dgetpeercon.c30 newbuf = realloc(buf, size);
H A Dlgetfilecon.c31 newbuf = realloc(buf, size);
/external/skia/src/ports/
H A DSkMemory_malloc.cpp35 return throw_on_failure(size, realloc(addr, size));

Completed in 510 milliseconds

1234567891011>>