Lines Matching refs:op3
15 quad_word op3 = op3_init; in test() local
23 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3) in test()
43 quad_word op1, op3; in op1_undefined() local
49 op3.high = op3.low = 0xdeadbeefdeadbabeull; in op1_undefined()
50 test(op1, op2, op3); // complaint in op1_undefined()
55 quad_word op1, op3; in op2_undefined() local
60 op3.high = op3.low = 0xdeadbeefdeadbabeull; in op2_undefined()
61 test(op1, op2, op3); // complaint in op2_undefined()
66 quad_word op1, op3; in op3_undefined() local
71 op3 = make_undefined(); in op3_undefined()
72 test(op1, op2, op3); // no complaint; op3 is just copied around in op3_undefined()