Lines Matching refs:c
89 void * volatile c = malloc (size); in test_tcache() local
90 printf ("a=%p, b=%p, c=%p\n", a, b, c); in test_tcache()
93 free (c); in test_tcache()
96 printf ("Before: c=%p, c[0]=%p\n", c, ((void **)c)[0]); in test_tcache()
97 memset (c, mask & 0xFF, size); in test_tcache()
98 printf ("After: c=%p, c[0]=%p\n", c, ((void **)c)[0]); in test_tcache()
100 c = malloc (size); in test_tcache()
101 printf ("Allocated: c=%p\n", c); in test_tcache()
128 void * volatile c = calloc (1, size); in test_fastbin() local
129 printf ("a=%p, b=%p, c=%p\n", a, b, c); in test_fastbin()
132 free (c); in test_fastbin()
135 printf ("Before: c=%p, c[0]=%p\n", c, ((void **)c)[0]); in test_fastbin()
136 memset (c, mask & 0xFF, size); in test_fastbin()
137 printf ("After: c=%p, c[0]=%p\n", c, ((void **)c)[0]); in test_fastbin()
139 c = calloc (1, size); in test_fastbin()
140 printf ("Allocated: c=%p\n", c); in test_fastbin()
166 void * volatile c = calloc (1, size); in test_fastbin_consolidate() local
167 printf ("a=%p, b=%p, c=%p\n", a, b, c); in test_fastbin_consolidate()
170 free (c); in test_fastbin_consolidate()
173 printf ("Before: c=%p, c[0]=%p\n", c, ((void **)c)[0]); in test_fastbin_consolidate()
174 memset (c, mask & 0xFF, size); in test_fastbin_consolidate()
175 printf ("After: c=%p, c[0]=%p\n", c, ((void **)c)[0]); in test_fastbin_consolidate()