HomeSort by relevance Sort by last modified time
    Searched refs:realloc (Results 1 - 25 of 450) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/massif/tests/
realloc.c 5 int* x = realloc(NULL, 800); // equivalent to malloc(800), and ends up
8 x = realloc(x, 800); // same size
10 x = realloc(x, 400); // smaller
12 x = realloc(x, 1200); // bigger
14 y = realloc(x+10, 1600); // bogus realloc
16 x = realloc(x, 0); // equivalent to free(x), and ends up
ignored.c 17 x = realloc(x, 800);
18 x = realloc(x, 400);
21 ignored_x = realloc(ignored_x, 800);
22 ignored_x = realloc(ignored_x, 400);
38 x = realloc(x, 800);
39 x = realloc(x, 400);
42 ignored_x = realloc(ignored_x, 800);
43 ignored_x = realloc(ignored_x, 400);
47 x = realloc(ignored_x, 0); // equivalent to 'free(ignored_x)'.
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)
  /external/valgrind/main/drd/tests/
memory_allocation.c 20 p = realloc(NULL, 40960);
21 p = realloc(p, 50000);
22 p = realloc(p, 40000);
23 p = realloc(p, 0);
25 * glibc returns a NULL pointer when the size argument passed to realloc()
  /external/valgrind/main/memcheck/tests/
realloc3.c 1 /* For a long time (from Valgrind 1.0 to 1.9.6, AFAICT) when realloc() was
4 referred to it would state that it was allocated not by the realloc(),
8 ExeContexts should be updated upon their realloc(). I hope that's clear.
19 x = realloc(x, 5); // same size
20 y = realloc(y, 5); // make smaller
21 z = realloc(z, 5); // make bigger
realloc2.c 3 realloc time due to bad ordering of the things happening. Now runs
15 p = realloc(p, 500);
16 p = realloc(p, 600);
malloc_free_fill.stderr.exp 5 test realloc-larger:
10 test realloc-smaller:
realloc1.c 15 p = realloc(p, i);
pdb-realloc.c 22 // realloc them, invoking copy_address_range_state()
23 x = realloc(x, 10000);
realloc3.stderr.exp 4 at 0x........: realloc (vg_replace_malloc.c:...)
10 at 0x........: realloc (vg_replace_malloc.c:...)
16 at 0x........: realloc (vg_replace_malloc.c:...)
  /ndk/sources/host-tools/sed-4.2.1/lib/
realloc.c 0 /* realloc() function that is glibc compatible.
22 /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h. */
23 #ifdef realloc
33 /* Below we want to call the system's malloc and realloc.
35 declaration of malloc(), not of rpl_malloc(), and likewise for realloc. */
37 #undef realloc macro
44 /* Below we want to call the system's malloc and realloc.
48 #undef realloc macro
64 /* In theory realloc might fail, so don't rely on it to free. */
79 result = realloc (p, n)
    [all...]
  /external/bluetooth/glib/glib/gnulib/
g-gnulib.h 34 #undef realloc macro
37 #define realloc g_realloc macro
  /external/valgrind/main/exp-ptrcheck/tests/
zero.c 12 c0 = realloc(c0, 10);
18 c0 = realloc(c0, 0);
realloc.c 17 x = realloc(x, sizeof(int*)*50); // smaller
25 x = realloc(x, sizeof(int*)*50); // same size
33 x = realloc(x, sizeof(int*)*100); // bigger
43 sink = realloc((void*)0x99, 10); // fails
  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 22 char *realloc ();
64 p = realloc (p, n);
  /external/hyphenation/
hnjalloc.c 58 p = realloc (p, size);
  /external/icu4c/samples/layout/
arraymem.h 20 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /external/llvm/lib/Support/
SmallVector.cpp 33 NewElts = realloc(this->BeginX, NewCapacityInBytes);
  /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/clang/test/Sema/
implicit-builtin-decl.c 39 void * realloc(void *p, int size) { // expected-warning{{incompatible redeclaration of library function 'realloc'}} \ function
40 // expected-note{{'realloc' is a builtin with type 'void *(void *,}}
  /external/icu4c/test/letest/
letest.h 33 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /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/skia/src/ports/
SkMemory_malloc.cpp 20 void* p = realloc(addr, size);
  /external/valgrind/main/include/
pub_tool_mallocfree.h 43 extern void* VG_(realloc) ( HChar* cc, void* p, SizeT size );
  /external/valgrind/main/none/tests/
bug129866.c 19 result = realloc (ptr, size);

Completed in 2160 milliseconds

1 2 3 4 5 6 7 8 91011>>