HomeSort by relevance Sort by last modified time
    Searched defs:realloc (Results 1 - 25 of 54) sorted by null

1 2 3

  /ndk/sources/host-tools/sed-4.2.1/lib/
realloc.c 0 /* realloc() function that is glibc compatible.
22 /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h. */
23 #ifdef realloc
33 /* Below we want to call the system's malloc and realloc.
35 declaration of malloc(), not of rpl_malloc(), and likewise for realloc. */
37 #undef realloc macro
44 /* Below we want to call the system's malloc and realloc.
48 #undef realloc macro
64 /* In theory realloc might fail, so don't rely on it to free. */
79 result = realloc (p, n)
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_DebugMem.h 36 #define realloc(x,s) OMX_DebugMem_realloc(x,s,__FILE__,__FUNCTION__,__LINE__) macro
  /hardware/ti/omap4-aah/domx/omx_core/inc/
OMX_DebugMem.h 60 #define realloc(x,s) OMX_DebugMem_realloc(x,s,__FILE__,__FUNCTION__,__LINE__) macro
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_DebugMem.h 60 #define realloc(x,s) OMX_DebugMem_realloc(x,s,__FILE__,__FUNCTION__,__LINE__) macro
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prwin16.h 107 void * (PR_CALLBACK *realloc)( void* old_blk, size_t size ); member in struct:PRMethodCallbackStr
  /external/clang/test/Sema/
implicit-builtin-decl.c 41 void * realloc(void *p, int size) { // expected-warning{{incompatible redeclaration of library function 'realloc'}} \ function
42 // expected-note{{'realloc' is a builtin with type 'void *(void *,}}
  /external/ipsec-tools/src/racoon/
gcmalloc.h 46 * malloc(), calloc(), realloc(), and free() entry points in the main
70 realloc(void *ptr, size_t size) function
117 #define racoon_realloc(old, sz) realloc((old), (sz))
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_buffer_pool.cc 121 BufferMap::iterator realloc = buffers_.end(); local
132 realloc = it;
140 if (realloc == buffers_.end()) {
144 *buffer_id_to_drop = realloc->first;
145 delete realloc->second;
146 buffers_.erase(realloc);
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 13 // 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) {
asan_malloc_win.cc 78 void *realloc(void *ptr, size_t size) { function
96 return realloc(p, size);
108 // _expand is used in realloc-like functions to resize the buffer if possible.
  /ndk/tests/device/test-stlport_shared-exception/jni/
badalloc1.cpp 63 extern "C" void *realloc (void *p, size_t size) function
  /ndk/tests/device/test-stlport_static-exception/jni/
badalloc1.cpp 63 extern "C" void *realloc (void *p, size_t size) function
  /external/chromium_org/third_party/freetype/src/raster/
ftmisc.h 78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 98 void *realloc(void *p, size_t size) { function
  /external/freetype/src/raster/
ftmisc.h 78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
ftmisc.h 78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/srec/portable/include/
pmemory.h 67 #define REALLOC(p, n) realloc(p, n)
87 #define realloc #error macro
125 * Portable realloc()
127 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize, L(__FILE__), __LINE__))
130 * Portable realloc()
132 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize))
204 * Reallocates data. Similar to realloc.
224 * Frees data allocated through pmalloc, pcalloc or realloc.
  /external/valgrind/main/drd/tests/
unit_vc.c 15 void* VG_(realloc)(const HChar* cc, void* p, SizeT size) function
16 { return realloc(p, size); }
  /external/chromium_org/third_party/freetype/include/freetype/
ftsystem.h 167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/
vpx_mem.h 111 # define realloc vpx_realloc macro
  /external/freetype/include/
ftsystem.h 167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/libvpx/libvpx/vpx_mem/
vpx_mem.h 111 # define realloc vpx_realloc macro
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftsystem.h 173 * realloc ::
183 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftsystem.h 173 * realloc ::
183 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /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

Completed in 4906 milliseconds

1 2 3