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

1 2 3

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
BaseMemAllocation.c 29 void *realloc (void *ptr, size_t size) function
RuntimeMemAllocation.c 392 void *realloc (void *ptr, size_t size) function
  /bionic/linker/
linker_memory.cpp 79 void* realloc(void* p, size_t byte_count) { function
80 return get_allocator().realloc(p, byte_count);
linker_allocator.cpp 46 // designed to provide the same functionality as the malloc/free/realloc
292 void* LinkerMemoryAllocator::realloc(void* ptr, size_t size) { function in class:LinkerMemoryAllocator
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MyAlloc.c 23 #undef realloc macro
MyAlloc.h 40 #define realloc(ptr, size) MyRealloc ((ptr), (size), __FILE__, __LINE__) macro
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
MyAlloc.c 30 #undef realloc macro
MyAlloc.h 47 #define realloc(ptr, size) MyRealloc ((ptr), (size), __FILE__, __LINE__) macro
  /external/boringssl/src/crypto/test/
malloc.cc 132 void *realloc(void *ptr, size_t size) { function
  /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/curl/lib/
curl_memory.h 29 * that use memory related functions strdup, malloc, calloc, realloc
114 * realloc and free, along with others, in memdebug.h in a different
127 #undef realloc macro
128 #define realloc(ptr,size) Curl_crealloc(ptr, size) macro
memdebug.h 96 #define realloc(ptr,size) curl_dorealloc(ptr, size, __LINE__, __FILE__) macro
  /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))
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Malloc.c 2 Definitions for memory allocation routines: calloc, malloc, realloc, free.
5 calloc, malloc, and realloc functions is unspecified. The pointer returned
43 region. Since this is required for the implementation of realloc,
161 does not match a pointer earlier returned by the calloc, malloc, or realloc
163 realloc, the behavior is undefined.
191 /** The realloc function changes the size of the object pointed to by Ptr to
198 If Ptr is a null pointer, the realloc function behaves like the malloc
202 realloc function, or if the space has been deallocated by a call to the free
203 or realloc function, the behavior is undefined.
234 realloc(void *Ptr, size_t ReqSize) function
    [all...]
  /external/capstone/contrib/windows_kernel/
libc.cpp 79 __cdecl realloc( function
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 100 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/python/cpython3/Include/
pymem.h 73 Never mix calls to PyMem_ with calls to the platform malloc/realloc/
95 Functions supplying platform-independent semantics for malloc/realloc/
98 may be returned), even if the platform malloc and realloc don't.
186 void* (*realloc) (void *ctx, void *ptr, size_t new_size); member in struct:__anon33183
  /external/syslinux/core/mem/
malloc.c 150 dprintf("failed realloc() magic check: %p\n", ptr);
212 trying to save it for future realloc()s of the same block. */
239 __export void *realloc(void *ptr, size_t size) function
241 return firmware->mem->realloc(ptr, size);
  /external/valgrind/drd/tests/
unit_vc.c 15 void* VG_(realloc)(const HChar* cc, void* p, SizeT size) function
16 { return realloc(p, size); }
  /bionic/libc/private/
bionic_malloc_dispatch.h 67 MallocRealloc realloc; member in struct:MallocDispatch
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.h 44 #define realloc(OldPtr,NewSize,OldSize) ReallocatePool(OldSize,NewSize,OldPtr) macro
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 13 // We simply define functions like malloc, free, realloc, etc.
76 INTERCEPTOR(void*, realloc, void *ptr, uptr size) {
157 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugK
171 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugL
177 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
182 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
asan_malloc_win.cc 101 void *realloc(void *ptr, size_t size) { function
114 return realloc(ptr, size);
124 return realloc(p, size);
136 // _expand is used in realloc-like functions to resize the buffer if possible.
188 // Realloc should never reallocate in place.
222 TryToOverrideFunction("realloc", (uptr)realloc);
223 TryToOverrideFunction("_realloc_base", (uptr)realloc);
224 TryToOverrideFunction("_realloc_crt", (uptr)realloc);
  /external/freetype/include/freetype/
ftsystem.h 167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_

Completed in 524 milliseconds

1 2 3