Home | History | Annotate | Download | only in s390x

Lines Matching refs:op2

29    printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
84 quad_word op1, op2, op3;
86 // op1 == op2
89 op2 = op1;
91 test(op1, op2, op3, 0);
93 // op1 != op2 (only MSB differs)
96 op2.high = 0;
97 op2.low = 1;
99 test(op1, op2, op3, 1);
101 // op1 != op2 (only LSB differs)
104 op2.high = 1;
105 op2.low = 0;
107 test(op1, op2, op3, 1);