Lines Matching refs:op3
17 quad_word op3 = op3_init; in test() local
21 quad_word op3_before = op3; in test()
25 printf("before op3 = (%#lx, %#lx)\n", op3.high, op3.low); in test()
35 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3) in test()
41 printf("after op3 = (%#lx, %#lx)\n", op3.high, op3.low); in test()
50 if (op3.low != op3_before.low || op3.high != op3_before.high) { in test()
63 if ((op2 & 0xffffffff) != (op3.low & 0xffffffff)) { in test()
67 if ((op2 >> 32) != (op3.high & 0xffffffff)) { in test()
95 quad_word op1, op3; in main() local
103 op3.high = op3.low = 0xdeadbeefdeadbabeull; in main()
104 test(op1, op2, op3, 0); in main()
110 op3.high = op3.low = 0xdeadbeefdeadbabeull; in main()
111 test(op1, op2, op3, 1); in main()