Searched refs:realloc (Results 1 – 18 of 18) sorted by relevance
/malloc/ |
A D | tst-realloc.c | 49 p = realloc (NULL, -1); in do_test() 63 p = realloc (NULL, 10); in do_test() 76 p = realloc (p, 200); in do_test() 94 p = realloc (NULL, 100); in do_test() 101 p = realloc (p, 16); in do_test() 124 c = realloc (p, -1); in do_test() 142 p = realloc (p, 0); in do_test() 147 p = realloc (NULL, 0); in do_test()
|
A D | tst-malloc-check.c | 57 p = realloc (p, 0); in do_test() 65 p = realloc (p, 0); in do_test() 83 if (realloc (p, -256) != NULL) in do_test() 101 if (realloc (p, -1) != NULL) in do_test()
|
A D | tst-malloc.c | 61 p = realloc (p, 0); in do_test() 69 p = realloc (p, 0); in do_test()
|
A D | reallocarray.c | 32 return realloc (optr, bytes); in __libc_reallocarray()
|
A D | scratch_buffer_dupfree.c | 37 void *copy = realloc (data, size); in __libc_scratch_buffer_dupfree()
|
A D | tst-compathooks-off.c | 62 void *mem = realloc (oldptr, bytes); in realloc_called() 116 p = realloc (p, 0); in do_test()
|
A D | Versions | 39 realloc; 110 realloc;
|
A D | scratch_buffer_grow_preserve.c | 46 new_ptr = realloc (buffer->data, new_length); in __libc_scratch_buffer_grow_preserve()
|
A D | dynarray_resize.c | 56 new_array = realloc (list->array, new_size_bytes); in __libc_dynarray_resize()
|
A D | dynarray_emplace_enlarge.c | 66 new_array = realloc (list->array, new_size); in __libc_dynarray_emplace_enlarge()
|
A D | malloc.h | 51 extern void *realloc (void *__ptr, size_t __size)
|
A D | tst-malloc-thread-fail.c | 89 void *p = realloc (NULL, 16); in allocate_1() 95 q = realloc (p, allocation_size); in allocate_1()
|
A D | malloc-debug.c | 41 DEBUG_FN(realloc); 268 strong_alias (__debug_realloc, realloc) in strong_alias() argument 665 compat_symbol (libc_malloc_debug, realloc, realloc, GLIBC_2_0);
|
A D | tst-malloc-too-large.c | 93 TEST_VERIFY (realloc (ptr_to_realloc, size) == NULL); in test_large_allocations()
|
A D | tst-interpose-aux.c | 260 realloc (void *ptr, size_t n) in realloc() function
|
A D | memusage.c | 397 realloc (void *old, size_t len) in realloc() function
|
A D | Makefile | 29 tst-malloc-usable tst-realloc tst-reallocarray tst-posix_memalign \
|
A D | malloc.c | 5913 strong_alias (__libc_realloc, __realloc) strong_alias (__libc_realloc, realloc)
|
Completed in 39 milliseconds