HomeSort by relevance Sort by last modified time
    Searched full:realloc (Results 201 - 225 of 1947) sorted by null

1 2 3 4 5 6 7 891011>>

  /bionic/libc/stdio/
vasprintf.c 44 _base = realloc(f._bf._base, ret + 1);
  /external/chromium/base/allocator/
prep_libc.sh 32 OBJFILES="malloc.obj free.obj realloc.obj new.obj delete.obj new2.obj delete2.obj align.obj msize.obj heapinit.obj expand.obj heapchk.obj heapwalk.obj heapmin.obj sbheap.obj calloc.obj recalloc.obj calloc_impl.obj new_mode.obj newopnt.obj"
  /external/chromium_org/third_party/WebKit/ManualTests/
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
  /external/chromium_org/third_party/freetype/src/raster/
ftmisc.h 78 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_memory_stdc.h 48 realloc(_old_ptr, _new_size + 0*(_old_size))
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasmlib.h 13 * Wrappers around malloc, realloc and free. nasm_malloc will
  /external/compiler-rt/SDKs/darwin/usr/include/
stdlib.h 30 void *realloc(void *, size_t);
  /external/harfbuzz/src/
harfbuzz-impl.c 59 block2 = realloc( block, new_size );
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-impl.c 59 block2 = realloc( block, new_size );
  /external/hyphenation/
hnjalloc.c 58 p = realloc (p, size);
  /external/libvpx/libvpx/nestegg/halloc/
README 36 realloc(ptr, 0). Standard allows it NOT to act as
  /external/mesa3d/src/gallium/auxiliary/os/
os_memory_stdc.h 48 realloc(_old_ptr, _new_size + 0*(_old_size))
  /sdk/emulator/opengl/host/libs/libOpenglRender/
ReadBuffer.cpp 51 new_buf = (unsigned char*)realloc(m_buf, new_size);
  /system/core/toolbox/
dynarray.c 37 new_items = realloc(a->items, new_cap*sizeof(void*));
  /external/marisa-trie/lib/marisa/
vector-inline.h 170 realloc(new_capacity);
177 realloc(size_);
198 void Vector<T>::realloc(std::size_t new_capacity) { function in class:marisa::Vector
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
vector-inline.h 170 realloc(new_capacity);
177 realloc(size_);
198 void Vector<T>::realloc(std::size_t new_capacity) { function in class:marisa_alpha::Vector
  /external/oprofile/libpopt/
poptparse.c 89 argv = realloc(argv, sizeof(*argv) * argvAlloced);
186 argstr = realloc(argstr, maxargvlen);
215 argstr = realloc(argstr, maxargvlen);
  /external/skia/gm/
valgrind.supp 109 fun:realloc
194 fun:realloc
279 fun:realloc
  /external/skia/tests/
valgrind.supp 109 fun:realloc
194 fun:realloc
279 fun:realloc
  /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...]
  /prebuilts/gcc/linux-x86/host/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'. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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'. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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.cpp 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
468 * 2 - realloc
664 qemu_debug_log("Instrumented for pid=%03u: malloc=%p, free=%p, calloc=%p, realloc=%p, memalign=%p",
    [all...]
  /external/chromium_org/third_party/libxml/src/
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...]

Completed in 534 milliseconds

1 2 3 4 5 6 7 891011>>