Lines Matching refs:opnd1

76    const opnd_t *opnd1  = &data->opnds[0];  in check_result_for_binary()  local
92 expected_vbits = left_vbits(or_vbits(opnd1->vbits, opnd2->vbits), in check_result_for_binary()
97 assert(opnd1->vbits.num_bits == opnd2->vbits.num_bits); in check_result_for_binary()
98 assert(opnd1->vbits.num_bits == result->vbits.num_bits); in check_result_for_binary()
101 expected_vbits = or_vbits(opnd1->vbits, opnd2->vbits); in check_result_for_binary()
105 assert(opnd1->vbits.num_bits == opnd2->vbits.num_bits); in check_result_for_binary()
106 assert(result->vbits.num_bits == 2 * opnd1->vbits.num_bits); in check_result_for_binary()
107 expected_vbits = concat_vbits(opnd1->vbits, opnd2->vbits); in check_result_for_binary()
119 expected_vbits = shl_vbits(opnd1->vbits, shift_amount); in check_result_for_binary()
132 expected_vbits = shr_vbits(opnd1->vbits, shift_amount); in check_result_for_binary()
145 expected_vbits = sar_vbits(opnd1->vbits, shift_amount); in check_result_for_binary()
158 term1 = and_vbits(opnd1->vbits, opnd2->vbits); in check_result_for_binary()
159 term2 = and_combine(opnd1->vbits, opnd2->vbits, opnd2->value, 0); in check_result_for_binary()
160 term3 = and_combine(opnd2->vbits, opnd1->vbits, opnd1->value, 0); in check_result_for_binary()
174 term1 = and_vbits(opnd1->vbits, opnd2->vbits); in check_result_for_binary()
175 term2 = and_combine(opnd1->vbits, opnd2->vbits, opnd2->value, 1); in check_result_for_binary()
176 term3 = and_combine(opnd2->vbits, opnd1->vbits, opnd1->value, 1); in check_result_for_binary()
186 expected_vbits = cmpord_vbits(opnd1->vbits.num_bits, in check_result_for_binary()