Searched defs:realloc (Results 1 - 25 of 36) sorted by relevance

12

/external/clang/test/Sema/
H A Dimplicit-builtin-decl.c39 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/ipsec-tools/src/racoon/
H A Dgcmalloc.h46 * 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/webkit/Source/JavaScriptCore/wtf/brew/
H A DSystemMallocBrew.h62 #define realloc(p, n) reallocBrew(p, n) macro
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc13 // 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) {
H A Dasan_malloc_win.cc68 void *realloc(void *ptr, size_t size) { function
84 return realloc(p, size);
/external/freetype/src/raster/
H A Dftmisc.h78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/srec/portable/include/
H A Dpmemory.h67 #define REALLOC(p, n) realloc(p, n)
87 #define realloc #error macro
125 * Portable realloc()
130 * Portable realloc()
204 * Reallocates data. Similar to realloc.
224 * Frees data allocated through pmalloc, pcalloc or realloc.
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cc98 void *realloc(void *p, size_t size) { function
/external/freetype/include/freetype/
H A Dftsystem.h167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h53 #define realloc(_cc,_pt,_sz) VG_(arena_realloc)(VG_AR_DEMANGLE,(_cc),(_pt),(_sz)) macro
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h156 #define realloc(p,size) VG_(arena_realloc) (VG_AR_CORE, "gdbsrv", p, size) macro
/external/webkit/Source/JavaScriptCore/wtf/wince/
H A DFastMallocWinCE.h54 #define realloc(p, n) fastRealloc(p, n) macro
H A DMemoryManager.cpp25 #undef realloc macro
74 return realloc(p, size);
118 void *fastRealloc(void* p, size_t n) { return realloc(p, n); }
/external/bison/darwin-lib/
H A Dstdlib.h593 rely on GNU or POSIX semantics for malloc and realloc (for example,
595 realloc to be redefined. */
1035 # undef realloc
1036 # define realloc rpl_realloc
1038 _GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size));
1039 _GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size));
1041 _GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size));
1043 _GL_CXXALIASWARN (realloc); variable
1045 # undef realloc macro
1046 /* Assume realloc i
[all...]
/external/bison/linux-lib/
H A Dstdlib.h593 rely on GNU or POSIX semantics for malloc and realloc (for example,
595 realloc to be redefined. */
1035 # undef realloc
1036 # define realloc rpl_realloc
1038 _GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size));
1039 _GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size));
1041 _GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size));
1043 _GL_CXXALIASWARN (realloc); variable
1045 # undef realloc macro
1046 /* Assume realloc i
[all...]
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.h117 # define realloc vpx_realloc macro
/external/marisa-trie/lib/marisa/
H A Dvector-inline.h170 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/
H A Dvector-inline.h170 realloc(new_capacity);
177 realloc(size_);
198 void Vector<T>::realloc(std::size_t new_capacity) { function in class:marisa_alpha::Vector
/external/valgrind/main/drd/tests/
H A Dunit_vc.c15 void* VG_(realloc)(HChar* cc, void* p, SizeT size) function
16 { return realloc(p, size); }
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h415 #define os_realloc(p, s) realloc((p), (s))
512 #define realloc OS_DO_NOT_USE_realloc macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h415 #define os_realloc(p, s) realloc((p), (s))
512 #define realloc OS_DO_NOT_USE_realloc macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h415 #define os_realloc(p, s) realloc((p), (s))
512 #define realloc OS_DO_NOT_USE_realloc macro
/external/srec/portable/src/
H A Dpmalloc.c36 #undef realloc macro
H A Dpmemfixed.c27 #undef realloc macro
H A Dpmemory.c36 #undef realloc macro
640 data->stackTrace = realloc(stackTrace, sizeof(LCHAR) * (LSTRLEN(stackTrace) + 1));
723 The realloc() function changes the size of the memory object pointed to by ptr to the size specified by size. The contents of the object will remain unchanged up to the lesser of the new and old sizes. If the new size of the memory object would require movement of the object, the space for the previous instantiation of the object is freed. If the new size is larger, the contents of the newly allocated portion of the object are unspecified. If size is 0 and ptr is not a null pointer, the object pointed to is freed. If the space cannot be allocated, the object remains unchanged.
724 If ptr is a null pointer, realloc() behaves like malloc() for the specified size.
726 If ptr does not match a pointer returned earlier by calloc(), malloc() or realloc() or if the space has previously been deallocated by a call to free() or realloc(), the behaviour is undefined.
728 The order and contiguity of storage allocated by successive calls to realloc() is unspecified. The pointer returned if the allocation succeeds is suitably aligned so that it may be assigned to a pointer to any type of object and then used to access such an object in the space allocated (until the space is explicitly freed or reallocated). Each such allocation will yield a pointer to an object disjoint from any other object. The pointer returned points to the start (lowest byte address) of the allocated space. If the space cannot be allocated, a null pointer is returned.
731 Upon successful completion with a size not equal to 0, realloc() returns a pointer to the (possibly moved) allocated space. If size is 0, either a null pointer or a unique pointer that can be successfully passed to free() is returned. If there is not enough available memory, realloc() returns a null pointer
810 newData = (MemoryData *) realloc(oldDat
[all...]

Completed in 652 milliseconds

12