Lines Matching refs:zero
9 char zero[2] = "\0\0"; in test_oc() local
12 asm volatile ("oc %O0(1,%R0),%0\n"::"Q" (*zero), in test_oc()
13 "Q"(*zero):"memory"); in test_oc()
15 dump_field(zero, 2); in test_oc()
27 char zero[2] = "\0\0"; in test_nc() local
30 asm volatile ("nc %O0(1,%R0),%0\n"::"Q" (*zero), in test_nc()
31 "Q"(*zero):"memory"); in test_nc()
33 dump_field(zero, 2); in test_nc()
47 char zero[300] = in test_xc() local
56 asm volatile ("xc %O0(1,%R0),%0\n"::"Q" (*zero), in test_xc()
57 "Q"(*zero):"memory"); in test_xc()
59 dump_field(zero, 4); in test_xc()
61 asm volatile ("xc %O0(10,%R0),%0\n"::"Q" (*zero), in test_xc()
62 "Q"(*zero):"memory"); in test_xc()
64 dump_field(zero, 12); in test_xc()
66 asm volatile ("xc %O0(100,%R0),%0\n"::"Q" (*zero), in test_xc()
67 "Q"(*zero):"memory"); in test_xc()
69 dump_field(zero, 102); in test_xc()
71 asm volatile ("xc %O0(256,%R0),%0\n"::"Q" (*zero), in test_xc()
72 "Q"(*zero):"memory"); in test_xc()
74 dump_field(zero, 257); in test_xc()
81 "2:\n"::"a" (zero), "a"(zero):"memory", "1", "2"); in test_xc()
83 dump_field(zero + 260, 30); in test_xc()