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

  /external/bluetooth/glib/glib/gnulib/
g-gnulib.h 34 #undef realloc macro
37 #define realloc g_realloc 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
  /external/expat/amiga/
stdlib.c 43 void * realloc (void * mem, size_t len2) function
  /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))
  /bionic/libc/bionic/
malloc_debug_common.h 79 /* Address of the actual realloc routine. */
80 void* (*realloc)(void* oldMem, size_t bytes); member in struct:MallocDebug
malloc_debug_common.c 229 void* realloc(void* oldMem, size_t bytes) { function
230 return __libc_malloc_dispatch->realloc(oldMem, bytes);
407 gMallocUse.realloc =
421 gMallocUse.realloc =
436 gMallocUse.realloc =
451 gMallocUse.realloc =
464 (gMallocUse.realloc == NULL) ||
470 gMallocUse.calloc, gMallocUse.realloc,
  /external/freetype/src/raster/
ftmisc.h 78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /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/bluetooth/glib/glib/
gmem.h 86 gpointer (*realloc) (gpointer mem, member in struct:_GMemVTable
  /external/freetype/include/freetype/
ftsystem.h 167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/webkit/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/libvpx/vpx_mem/
vpx_mem.h 117 # define realloc vpx_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/
os.h 386 #define os_realloc(p, s) realloc((p), (s))
461 #define realloc OS_DO_NOT_USE_realloc macro
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os.h 386 #define os_realloc(p, s) realloc((p), (s))
474 #define realloc OS_DO_NOT_USE_realloc macro
  /external/freetype/src/base/
ftdbgmem.c 137 FT_Realloc_Func realloc; member in struct:FT_MemTableRec_
324 table->realloc = memory->realloc;
840 memory->realloc = ft_mem_debug_realloc;
895 memory->realloc = table->realloc;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 410 extern void *realloc (void *, size_t);
630 #define really_call_realloc realloc
633 /* Flex and bison use malloc and realloc. Yuk. Note that this means
636 #define realloc xrealloc macro
652 #undef realloc macro
653 #pragma GCC poison malloc realloc
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 410 extern void *realloc (void *, size_t);
630 #define really_call_realloc realloc
633 /* Flex and bison use malloc and realloc. Yuk. Note that this means
636 #define realloc xrealloc macro
652 #undef realloc macro
653 #pragma GCC poison malloc realloc
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3ext.h 107 void *(*realloc)(void*,int); member in struct:sqlite3_api_routines
242 #define sqlite3_realloc sqlite3_api->realloc
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 38 This is a version (aka dlmalloc) of malloc/free/realloc written by
189 a size_t, not counting any clearing in calloc or copying in realloc,
294 realloc are ignored. And all bookkeeping information is zeroed out
365 If true realloc() uses mremap() to re-allocate large blocks and
402 This should be set if a call to realloc with zero bytes should
405 realloc(p, 0).
616 #define realloc SDL_realloc macro
690 #define dlrealloc realloc
724 allocated using malloc or a related routine such as realloc.
738 realloc(void* p, size_t n
    [all...]

Completed in 347 milliseconds