HomeSort by relevance Sort by last modified time
    Searched full:realloc (Results 126 - 150 of 1311) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/elfutils/lib/
xmalloc.c 64 p = realloc (p, n);
  /external/freetype/src/raster/
ftmisc.h 78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/harfbuzz/src/
harfbuzz-impl.c 59 block2 = realloc( block, new_size );
  /external/hyphenation/
hnjalloc.c 58 p = realloc (p, size);
  /external/libvpx/nestegg/halloc/
README 36 realloc(ptr, 0). Standard allows it NOT to act as
  /external/webkit/Source/WebCore/manual-tests/
array-out-of-memory.html 9 // The index 'target' is the location in the array we expect to fault on access, should the size calculation of the realloc of the vector be allowed
  /system/core/toolbox/
dynarray.c 37 new_items = realloc(a->items, new_cap*sizeof(void*));
  /external/oprofile/libpopt/
poptparse.c 89 argv = realloc(argv, sizeof(*argv) * argvAlloced);
186 argstr = realloc(argstr, maxargvlen);
215 argstr = realloc(argstr, maxargvlen);
  /external/srec/portable/src/
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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
malloc.h 58 /* __attribute_malloc__ is not used, because if realloc returns
61 extern void *realloc __MALLOC_P ((void *__ptr, size_t __size))
64 /* Free a block allocated by `malloc', `realloc' or `calloc'. */
  /bionic/libc/bionic/
malloc_debug_qemu.c 121 * along with TRACE_DEV_REG_QUERY_MALLOC event. When handling free and realloc
123 * actually allocated in previous calls to malloc, calloc, memalign, or realloc.
154 * 2 - realloc
488 * 2 - realloc
695 debug_log("Instrumented for pid=%03u: malloc=%p, free=%p, calloc=%p, realloc=%p, memalign=%p",
    [all...]
  /external/libxml2/
xmlmemory.c 306 * a realloc() equivalent, with logging of the allocation info.
345 p = (MEMHDR *) realloc(p,RESERVE_SIZE+size);
387 * a realloc() equivalent, with logging of the allocation info.
673 case REALLOC_TYPE:fprintf(fp,"realloc() in ");break;
754 case REALLOC_TYPE:fprintf(fp,"realloc() in ");break;
863 case REALLOC_TYPE:fprintf(fp,"realloc() in ");break;
986 * @reallocFunc: the realloc() function to use
1028 * @reallocFunc: place to save the realloc() function in use
1050 * @reallocFunc: the realloc() function to use
1098 * @reallocFunc: place to save the realloc() function in us
    [all...]
  /external/chromium/base/allocator/
allocator_shim.cc 155 void* realloc(void* ptr, size_t size) __THROW {
157 // realloc(0, 0) code path does not guarantee a non-NULL return, so be sure
184 // the requested new size is zero, realloc should free the ptr and return
README 43 void* realloc(void* p, size_t s);
  /external/valgrind/main/memcheck/tests/
origin1-yes.c 67 // Realloc block, uninitialised
71 int* ptr_to_undef_realloc_int = realloc(ptr_to_undef_malloc_int2, 4096);
75 fprintf(stderr, "\nUndef 5 of 8 (realloc)\n");
  /system/core/sh/
memalloc.c 71 * Same for realloc.
77 p = realloc(p, nbytes);
199 * possibly moving it (like realloc). Grabstackblock actually allocates the
  /external/bluetooth/glib/gio/
gmemoryoutputstream.h 78 * The function should have the same semantics as realloc().
  /external/dhcpcd/compat/
getline.c 60 newbuf = realloc(*buf, newlen);
  /external/e2fsprogs/lib/ss/
invocation.c 46 table = (ss_data **) realloc((char *)table,
request_tbl.c 37 t = (ssrt **)realloc(info->rqt_tables, (unsigned)size*sizeof(ssrt));
  /external/expat/amiga/
stdlib.c 43 void * realloc (void * mem, size_t len2) function
  /external/freetype/include/freetype/config/
ftstdlib.h 133 #define ft_srealloc realloc
  /external/giflib/
gifalloc.c 205 ColorUnion->Colors = (GifColorType *)realloc(Map,
260 New->ExtensionBlocks = (ExtensionBlock *)realloc(New->ExtensionBlocks,
330 /*** FIXME: We could realloc the GifFile->SavedImages structure but is
350 GifFile->SavedImages = (SavedImage *)realloc(GifFile->SavedImages,
  /external/icu4c/common/
cmemory.c 68 return realloc(buffer, size);
  /external/iproute2/tc/
emp_ematch.l 46 strbuf = realloc(strbuf, strbuf_size);

Completed in 411 milliseconds

1 2 3 4 56 7 8 91011>>