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

1 2

  /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);
89 return get_allocator().realloc(p, byte_count);
  /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 91 #define realloc(ptr,size) curl_dbg_realloc(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 71 Never mix calls to PyMem_ with calls to the platform malloc/realloc/
93 Functions supplying platform-independent semantics for malloc/realloc/
96 may be returned), even if the platform malloc and realloc don't.
190 void* (*realloc) (void *ctx, void *ptr, size_t new_size); member in struct:__anon37119
  /bionic/libc/bionic/
bionic_allocator.cpp 48 // functionality as the malloc/free/realloc libc functions.
343 void* BionicAllocator::realloc(void* ptr, size_t size) { function in class:BionicAllocator
malloc_common.cpp 158 extern "C" __attribute__((__noinline__)) void* realloc(void* old_mem, size_t bytes) { function
161 return dispatch_table->realloc(old_mem, bytes);
163 void* result = Malloc(realloc)(old_mem, bytes);
165 warning_log("realloc(%p, %zu) failed: returning null pointer", old_mem, bytes);
178 return realloc(old_mem, new_size);
  /bionic/libc/private/
bionic_malloc_dispatch.h 69 MallocRealloc realloc; member in struct:MallocDispatch
  /device/google/bonito/json-c/
json_util.c 13 #undef realloc macro
273 return realloc(p, n);
  /device/google/crosshatch/json-c/
json_util.c 13 #undef realloc macro
273 return realloc(p, n);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.h 44 #define realloc(OldPtr,NewSize,OldSize) ReallocatePool(OldSize,NewSize,OldPtr) macro
  /external/antlr/runtime/Cpp/include/
antlr3memory.hpp 156 ANTLR_INLINE static void* realloc(void *ptr, size_t size) function in class:DefaultAllocPolicy
158 return ::realloc( ptr, size );
  /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),

Completed in 1802 milliseconds

1 2