Lines Matching refs:op1
15 quad_word op1 = op1_init; in test() local
19 quad_word op1_before = op1; in test()
23 printf("before op1 = (%#lx, %#lx)\n", op1.high, op1.low); in test()
35 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3) in test()
39 printf("after op1 = (%#lx, %#lx)\n", op1.high, op1.low); in test()
58 if (op1.low != op1_before.low || op1.high != op1_before.high) { in test()
79 if ((op1.high >> 32) != (op1_before.high >> 32) || in test()
80 (op1.low >> 32) != (op1_before.low >> 32)) { in test()
84 if ((op1.low & 0xffffffff) != (op2 & 0xffffffff)) { in test()
87 if ((op1.high & 0xffffffff) != (op2 >> 32)) { in test()
95 quad_word op1, op3; in main() local
99 op1.high = 0x0000000044556677ull; in main()
100 op1.low = 0x111111118899aabbull; in main()
104 test(op1, op2, op3, 0); in main()
107 op1.high = 0x1000000000000000ull; in main()
108 op1.low = 0x0000000000000000ull; in main()
111 test(op1, op2, op3, 1); in main()