Searched refs:calloc (Results 1 – 13 of 13) sorted by relevance
/malloc/ |
A D | tst-calloc.c | 41 ptrs[i] = (char *) calloc (1, size); in fixed_test() 74 ptrs[i] = (char *) calloc (n, elem); in random_test() 102 calloc (0, 0); in null_test() 103 calloc (0, UINT_MAX); in null_test() 104 calloc (UINT_MAX, 0); in null_test() 105 calloc (0, ~((size_t) 0)); in null_test() 106 calloc (~((size_t) 0), 0); in null_test()
|
A D | tst-safe-linking.c | 120 void * volatile p = calloc (1, size); in test_fastbin() 126 void * volatile a = calloc (1, size); in test_fastbin() 127 void * volatile b = calloc (1, size); in test_fastbin() 128 void * volatile c = calloc (1, size); in test_fastbin() 139 c = calloc (1, size); in test_fastbin() 142 b = calloc (1, size); in test_fastbin() 159 void * volatile p = calloc (1, size); in test_fastbin_consolidate() 164 void * volatile a = calloc (1, size); in test_fastbin_consolidate() 165 void * volatile b = calloc (1, size); in test_fastbin_consolidate() 166 void * volatile c = calloc (1, size); in test_fastbin_consolidate()
|
A D | tst-compathooks-off.c | 72 void *mem = calloc (n, size); in calloc_called() 120 p = calloc (512, 1); in do_test()
|
A D | Versions | 22 calloc; cfree; 105 calloc;
|
A D | tst-malloc-too-large.c | 104 TEST_VERIFY (calloc (nmemb, size / nmemb) == NULL); in test_large_allocations() 108 TEST_VERIFY (calloc (size / nmemb, nmemb) == NULL); in test_large_allocations()
|
A D | tst-realloc.c | 71 p = calloc (20, 1); in do_test()
|
A D | malloc.h | 43 extern void *calloc (size_t __nmemb, size_t __size)
|
A D | malloc-debug.c | 45 DEBUG_FN(calloc); 397 strong_alias (__debug_calloc, calloc) in strong_alias() argument 644 compat_symbol (libc_malloc_debug, calloc, calloc, GLIBC_2_0);
|
A D | tst-interpose-aux.c | 245 calloc (size_t a, size_t b) in calloc() function
|
A D | tst-malloc-thread-fail.c | 39 return calloc (a, b); in allocate_zeroed()
|
A D | memusage.c | 492 calloc (size_t n, size_t len) in calloc() function
|
A D | Makefile | 27 tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
|
A D | malloc.c | 5908 strong_alias (__libc_calloc, __calloc) weak_alias (__libc_calloc, calloc)
|
Completed in 31 milliseconds