Searched refs:x (Results 1 – 5 of 5) sorted by relevance
31 char * volatile x = malloc (32); in do_test() local33 free (x); // puts in tcache in do_test()34 free (x); // should abort in do_test()
21 char *x; in main() local41 x = malloc (0x1000); in main()42 free (x); in main()
165 printf ("+ %#0@XXX@x Alloc %d duplicate: %s %s\n",179 printf ("- %#0@XXX@x Free %d was never alloc'd %s\n",189 printf ("- %#0@XXX@x Realloc %d was never alloc'd %s\n",196 printf ("+ %#0@XXX@x Realloc %d duplicate: %#010x %s %s\n",228 printf ("%#0@XXX@x %#8x at %s\n", hex($addr), $allocated{$addr},
379 #define malloc_opt_barrier(x) \ argument380 ({ __typeof (x) __x = x; __asm ("" : "+m" (__x)); __x; })
321 # define csize2tidx(x) (((x) - MINSIZE + MALLOC_ALIGNMENT - 1) / MALLOC_ALIGNMENT) argument323 # define usize2tidx(x) csize2tidx (request2size (x)) argument
Completed in 18 milliseconds