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

1 2

  /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...]
  /external/webkit/Source/JavaScriptCore/wtf/brew/
SystemMallocBrew.h 54 return REALLOC(p, n | ALLOC_NO_ZMEM);
62 #define realloc(p, n) reallocBrew(p, n) macro
  /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/omap4xxx/domx/omx_core/inc/
OMX_DebugMem.h 60 #define realloc(x,s) OMX_DebugMem_realloc(x,s,__FILE__,__FUNCTION__,__LINE__) macro
  /external/clang/test/Sema/
implicit-builtin-decl.c 39 void * realloc(void *p, int size) { // expected-warning{{incompatible redeclaration of library function 'realloc'}} \ function
40 // expected-note{{'realloc' is a builtin with type 'void *(void *,}}
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 13 // We simply define functions like malloc, free, realloc, etc.
28 DECLARE_REAL_AND_INTERCEPTOR(void*, realloc, void *ptr, uptr size)
35 void* (*realloc)(void* oldMem, uptr bytes); member in struct:MallocDebug
40 WRAP(malloc), WRAP(free), WRAP(calloc), WRAP(realloc), WRAP(memalign)
93 INTERCEPTOR(void*, realloc, void *ptr, uptr size) {
asan_malloc_win.cc 68 void *realloc(void *ptr, size_t size) { function
84 return realloc(p, size);
  /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))
  /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/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/marisa-trie/lib/marisa/
vector-inline.h 170 realloc(new_capacity);
177 realloc(size_);
198 void Vector<T>::realloc(std::size_t new_capacity) { function in class:marisa::Vector
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
vector-inline.h 170 realloc(new_capacity);
177 realloc(size_);
198 void Vector<T>::realloc(std::size_t new_capacity) { function in class:marisa_alpha::Vector
  /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)(HChar* cc, void* p, SizeT size) function
16 { return realloc(p, size); }
  /bionic/libc/bionic/
malloc_debug_common.h 78 MallocDebugRealloc realloc; member in struct:MallocDebug
malloc_debug_common.cpp 237 extern "C" void* realloc(void* oldMem, size_t bytes) { function
238 return __libc_malloc_dispatch->realloc(oldMem, bytes);
324 table->realloc = reinterpret_cast<MallocDebugRealloc>(dlsym(libc_malloc_impl_handle, symbol));
325 if (table->realloc == NULL) {
487 (gMallocUse.realloc == NULL) ||
  /external/freetype/include/freetype/
ftsystem.h 167 * realloc ::
176 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
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 156 #define realloc(p,size) VG_(arena_realloc) (VG_AR_CORE, "gdbsrv", p, size) macro
  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 54 #define realloc(p, n) fastRealloc(p, n) macro
MemoryManager.cpp 25 #undef realloc macro
74 return realloc(p, size);
118 void *fastRealloc(void* p, size_t n) { return realloc(p, n); }
  /external/bison/darwin-lib/
stdlib.h 593 rely on GNU or POSIX semantics for malloc and realloc (for example,
595 realloc to be redefined. */
1043 _GL_CXXALIASWARN (realloc); variable
1045 # undef realloc macro
    [all...]
  /external/bison/linux-lib/
stdlib.h 593 rely on GNU or POSIX semantics for malloc and realloc (for example,
595 realloc to be redefined. */
1043 _GL_CXXALIASWARN (realloc); variable
1045 # undef realloc macro
    [all...]

Completed in 1425 milliseconds

1 2