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

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
bug129866.c 19 result = realloc (ptr, size);
  /external/bluetooth/glib/glib/gnulib/
g-gnulib.h 34 #undef realloc macro
37 #define realloc g_realloc macro
  /external/libvpx/nestegg/halloc/src/
halloc.c 15 #include <stdlib.h> /* realloc */
90 /* realloc */
182 * of realloc(ptr, 0), which is defined in the standard
190 allocator = realloc;
195 if ((p = realloc(p, 0)))
197 /* realloc cannot be used as free() */
206 * free'ing realloc()
209 return realloc(ptr, n);
  /external/valgrind/main/memcheck/tests/
pdb-realloc.c 22 // realloc them, invoking copy_address_range_state()
23 x = realloc(x, 10000);
malloc_free_fill.c 32 fprintf(stderr, "\ntest realloc-larger:\n");
39 r = realloc(r, 40 * sizeof(int)); assert(r);
47 fprintf(stderr, "\ntest realloc-smaller:\n");
54 r = realloc(r, 20 * sizeof(int)); assert(r);
  /ndk/sources/host-tools/sed-4.2.1/m4/
malloc.m4 25 # Test whether malloc, realloc, calloc are POSIX compliant,
29 AC_CACHE_CHECK([whether malloc, realloc, calloc are POSIX compliant],
  /external/icu4c/test/letest/
letest.h 33 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /external/valgrind/main/massif/tests/
Makefile.am 32 realloc.post.exp realloc.stderr.exp realloc.vgtest \
60 realloc \
realloc.post.exp 2 Command: ./realloc
43 ->100.00% (800B) 0x........: main (realloc.c:8)
45 ->00.00% (0B) 0x........: main (realloc.c:5)
54 ->100.00% (1,200B) 0x........: main (realloc.c:12)
56 ->00.00% (0B) 0x........: main (realloc.c:5)
58 ->00.00% (0B) 0x........: main (realloc.c:8)
60 ->00.00% (0B) 0x........: main (realloc.c:10)
  /hardware/ti/omap4xxx/
Android.mk 10 OMAP4_DEBUG_LDFLAGS:= $(foreach f, $(strip malloc realloc calloc free), -Wl,--wrap=$(f))
tm.c 37 ptr[2] = realloc(ptr[2], 300);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libutil-2.7.so 
libutil.so 
libutil.so.1 
  /external/flac/include/share/
alloc.h 63 // realloc(ptr, n1 * n2)
69 return n == ns ? realloc(ptr, ns) : NULL;
  /external/oprofile/libutil/
op_libiberty.h 46 realloc type functions are not suitable for attribute malloc since
68 #define xrealloc(p,s) realloc(p,s)
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_private.h 54 __tmp_ptr = realloc(ptr, size); \
56 OOM("realloc", (size)); \
  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 22 char *realloc ();
64 p = realloc (p, n);
  /external/clang/test/Analysis/
malloc.c 5 void *realloc(void *ptr, size_t size);
38 realloc(p,0);
39 realloc(p,0); // expected-warning{{Try to free a memory block that has been released}}
44 int *q = realloc(p,0); // no-warning
168 q = realloc(q, 20);
185 realloc(p,0);
207 realloc(x,0);
  /external/bluetooth/glib/glib/
gmem.c 67 return realloc (mem, n_bytes);
74 # define standard_realloc realloc
79 # define standard_try_realloc realloc
91 return realloc (mem, n_bytes);
170 mem = glib_mem_vtable.realloc (mem, n_bytes);
271 if (vtable->malloc && vtable->realloc && vtable->free)
274 glib_mem_vtable.realloc = vtable->realloc;
278 glib_mem_vtable.try_realloc = vtable->try_realloc ? vtable->try_realloc : glib_mem_vtable.realloc;
282 g_warning (G_STRLOC ": memory allocation vtable lacks one of malloc(), realloc() or free()")
    [all...]
  /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/icu4c/common/
uvectr64.cpp 146 // We keep the original contents on the memory failure on realloc.
160 if (limit > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check for realloc
161 // Something is very wrong, don't realloc, leave capacity and maxCapacity unchanged
171 // Realloc the storage to the new, smaller size.
174 // Realloc to smaller failed.
  /external/bluetooth/glib/gio/xdgmime/
xdgmimealias.c 135 list->aliases = realloc (list->aliases, alloc * sizeof (XdgAlias));
150 list->aliases = realloc (list->aliases,
157 list->aliases = realloc (list->aliases,
xdgmimeicon.c 134 list->icons = realloc (list->icons, alloc * sizeof (XdgIcon));
149 list->icons = realloc (list->icons,
156 list->icons = realloc (list->icons,
  /external/e2fsprogs/e2fsck/
mtrace.c 57 /* This function is called when the block being alloc'd, realloc'd, or
115 hdr = (__ptr_t) realloc (ptr, size);
120 /* Failed realloc. */

Completed in 1241 milliseconds

12 3 4 5 6 7 8 91011>>