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

12 3

  /external/valgrind/main/coregrind/m_gdbserver/
server.h 161 #define realloc(p,size) VG_(arena_realloc) (VG_AR_CORE, "gdbsrv", p, size) macro
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/
vpx_mem.h 111 # define realloc vpx_realloc macro
  /bionic/libc/bionic/
malloc_debug_common.cpp 77 Malloc(realloc),
280 extern "C" void* realloc(void* oldMem, size_t bytes) { function
281 return __libc_malloc_dispatch->realloc(oldMem, bytes);
322 InitMallocFunction<MallocDebugRealloc>(malloc_impl_handler, &table->realloc, prefix, "realloc");
474 (malloc_dispatch_table.realloc == NULL)
malloc_debug_common.h 102 MallocDebugRealloc realloc; member in struct:MallocDebug
  /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...]
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.h 18 # define realloc je_realloc macro
jemalloc_mangle_jet.h 18 # define realloc jet_realloc macro
jemalloc.h 179 # define realloc je_realloc macro
  /external/srec/portable/src/
pmalloc.c 36 #undef realloc macro
pmemfixed.c 27 #undef realloc macro
pmemory.c 36 #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(oldData, actualSize)
    [all...]
  /external/wpa_supplicant_8/src/utils/
os.h 481 #define os_realloc(p, s) realloc((p), (s))
616 #define realloc OS_DO_NOT_USE_realloc macro
  /external/chromium_org/third_party/freetype/src/base/
ftdbgmem.c 137 FT_Realloc_Func realloc; member in struct:FT_MemTableRec_
324 table->realloc = memory->realloc;
835 memory->realloc = ft_mem_debug_realloc;
890 memory->realloc = table->realloc;
  /external/freetype/src/base/
ftdbgmem.c 137 FT_Realloc_Func realloc; member in struct:FT_MemTableRec_
324 table->realloc = memory->realloc;
835 memory->realloc = ft_mem_debug_realloc;
890 memory->realloc = table->realloc;
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftdbgmem.c 137 FT_Realloc_Func realloc; member in struct:FT_MemTableRec_
324 table->realloc = memory->realloc;
835 memory->realloc = ft_mem_debug_realloc;
890 memory->realloc = table->realloc;
  /external/valgrind/main/memcheck/
mc_malloc_wrappers.c 534 void* MC_(realloc) ( ThreadId tid, void* p_old, SizeT new_szB ) function
541 if (complain_about_silly_args(new_szB, "realloc"))
558 /* can not realloc a range that was allocated with new or new [] */
659 and not used for, handling of the normal libc realloc()
    [all...]
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 150 extern char *malloc (), *realloc ();
203 return (char *) realloc (p, n);
205 # define realloc my_realloc macro
813 = (char **) realloc (pglob->gl_pathv,
932 = (char **) realloc (pglob->gl_pathv,
987 new_pathv = (char **) realloc (pglob->gl_pathv,
1035 char *new = realloc (pglob->gl_pathv[i], len);
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 894 int realloc = 0; local
901 realloc = 1;
905 realloc = 1;
910 realloc = 1;
913 if (realloc) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 476 extern void *realloc (void *, size_t);
751 #define really_call_realloc realloc
754 /* Flex and bison use malloc and realloc. Yuk. Note that this means
757 #define realloc xrealloc macro
773 #undef realloc macro
774 #pragma GCC poison malloc realloc
    [all...]
  /external/valgrind/main/coregrind/
m_mallocfree.c 2384 void* VG_(realloc) ( const HChar* cc, void* ptr, SizeT size ) function
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
sqlite3ext.h 111 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
314 #define sqlite3_realloc sqlite3_api->realloc
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 488 /// void *realloc(void *ptr, size_t size);
489 realloc, enumerator in enum:llvm::LibFunc::Func
  /external/sqlite/dist/orig/
sqlite3ext.h 121 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
352 #define sqlite3_realloc sqlite3_api->realloc
  /external/sqlite/dist/
sqlite3ext.h 121 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
352 #define sqlite3_realloc sqlite3_api->realloc

Completed in 1851 milliseconds

12 3