Searched refs:MAGIC2 (Results 1 – 3 of 3) sorted by relevance
/glibc-2.36/dlfcn/ |
D | tststatic4.c | 25 #define MAGIC2 0xaaff0055 macro 253 global_setfoo (MAGIC2); in do_test() 256 if (foo != MAGIC2) in do_test() 258 printf ("*foop [initial]: got %#x, expected %#x\n", foo, MAGIC2); in do_test() 263 if (foo != MAGIC2) in do_test() 265 printf ("*foop [global]: got %#x, expected %#x\n", foo, MAGIC2); in do_test() 270 if (foo != MAGIC2) in do_test() 272 printf ("*foop [local]: got %#x, expected %#x\n", foo, MAGIC2); in do_test() 277 if (foo != MAGIC2) in do_test() 279 printf ("getfoo [initial]: got %#x, expected %#x\n", foo, MAGIC2); in do_test() [all …]
|
D | tststatic3.c | 25 #define MAGIC2 0xaaff0055 macro 102 setfoo (MAGIC2); in do_test() 105 if (foo != MAGIC2) in do_test() 107 printf ("*foop: got %#x, expected %#x\n", foo, MAGIC2); in do_test() 112 if (foo != MAGIC2) in do_test() 114 printf ("getfoo: got %#x, expected %#x\n", foo, MAGIC2); in do_test()
|
/glibc-2.36/elf/ |
D | tst-audit2.c | 9 #define MAGIC2 0xd8675309 macro 10 static __thread unsigned int magic[] = { MAGIC1, MAGIC2 }; 26 if (magic[0] != MAGIC1 || magic[1] != MAGIC2) in calloc() 29 magic[0], magic[1], MAGIC1, MAGIC2); in calloc() 32 magic[0] = MAGIC2; in calloc() 51 if (magic[1] != MAGIC1 || magic[0] != MAGIC2) in do_test() 53 printf ("{%x, %x} != {%x, %x}\n", magic[0], magic[1], MAGIC2, MAGIC1); in do_test()
|