Searched refs:b (Results 1 – 7 of 7) sorted by relevance
/malloc/ |
A D | tst-safe-linking.c | 88 void * volatile b = malloc (size); in test_tcache() local 92 free (b); in test_tcache() 103 b = malloc (size); in test_tcache() 104 printf ("b=%p\n", b); in test_tcache() 127 void * volatile b = calloc (1, size); in test_fastbin() local 131 free (b); in test_fastbin() 142 b = calloc (1, size); in test_fastbin() 143 printf ("b=%p\n", b); in test_fastbin() 165 void * volatile b = calloc (1, size); in test_fastbin_consolidate() local 169 free (b); in test_fastbin_consolidate() [all …]
|
A D | tst-tcfree3.c | 31 int ** volatile b = malloc (32); in do_test() local 44 memcpy (b, a, 32); in do_test() 49 free (b); // should NOT abort in do_test()
|
A D | tst-scratch_buffer.c | 28 unchanged_array_size (struct scratch_buffer *buf, size_t a, size_t b) in unchanged_array_size() argument 31 if (!scratch_buffer_set_array_size (buf, a, b)) in unchanged_array_size() 34 a, b); in unchanged_array_size() 40 a, b); in unchanged_array_size() 47 array_size_must_fail (size_t a, size_t b) in array_size_must_fail() argument 59 if (scratch_buffer_set_array_size (&buf, a, b)) in array_size_must_fail() 62 pass, a, b); in array_size_must_fail() 68 pass, a, b); in array_size_must_fail()
|
A D | tst-reallocarray.c | 50 size_t a, b; in do_test() local 64 b = max/65537 + 1; in do_test() 66 ptr = reallocarray_nowarn (NULL, a, b); in do_test() 71 ptr = reallocarray_nowarn (NULL, b, a); in do_test()
|
A D | tst-interpose-aux.c | 245 calloc (size_t a, size_t b) in calloc() argument 247 if (b > 0 && a > SIZE_MAX / b) in calloc() 254 void *result = malloc_internal (a * b); in calloc()
|
A D | tst-malloc-thread-fail.c | 37 allocate_zeroed (size_t a, size_t b) in allocate_zeroed() argument 39 return calloc (a, b); in allocate_zeroed()
|
A D | malloc.c | 1546 #define next_bin(b) ((mbinptr) ((char *) (b) + (sizeof (mchunkptr) << 1))) argument 1549 #define first(b) ((b)->fd) argument 1550 #define last(b) ((b)->bk) argument 2266 mbinptr b; in do_check_malloc_state() local 2336 b = bin_at (av, i); in do_check_malloc_state() 2342 int empty = last (b) == b; in do_check_malloc_state() 2349 for (p = last (b); p != b; p = p->bk) in do_check_malloc_state() 2361 assert (p->bk == b || in do_check_malloc_state() 5153 mbinptr b; in int_mallinfo() local 5189 b = bin_at (av, i); in int_mallinfo() [all …]
|
Completed in 21 milliseconds