Lines Matching refs:size
82 size_t size = TCACHE_ALLOC_SIZE; in test_tcache() local
87 void * volatile a = malloc (size); in test_tcache()
88 void * volatile b = malloc (size); in test_tcache()
89 void * volatile c = malloc (size); in test_tcache()
97 memset (c, mask & 0xFF, size); in test_tcache()
100 c = malloc (size); in test_tcache()
103 b = malloc (size); in test_tcache()
113 size_t size = TCACHE_ALLOC_SIZE; in test_fastbin() local
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()
136 memset (c, mask & 0xFF, size); in test_fastbin()
139 c = calloc (1, size); in test_fastbin()
142 b = calloc (1, size); in test_fastbin()
152 size_t size = TCACHE_ALLOC_SIZE; in test_fastbin_consolidate() local
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()
174 memset (c, mask & 0xFF, size); in test_fastbin_consolidate()