Home | History | Annotate | Download | only in vbit-test

Lines Matching refs:opnd1

52    const opnd_t *opnd1  = &data->opnds[0];
68 expected_vbits = left_vbits(or_vbits(opnd1->vbits, opnd2->vbits),
73 assert(opnd1->vbits.num_bits == opnd2->vbits.num_bits);
74 assert(opnd1->vbits.num_bits == result->vbits.num_bits);
77 expected_vbits = or_vbits(opnd1->vbits, opnd2->vbits);
81 assert(opnd1->vbits.num_bits == opnd2->vbits.num_bits);
82 assert(result->vbits.num_bits == 2 * opnd1->vbits.num_bits);
83 expected_vbits = concat_vbits(opnd1->vbits, opnd2->vbits);
95 expected_vbits = shl_vbits(opnd1->vbits, shift_amount);
108 expected_vbits = shr_vbits(opnd1->vbits, shift_amount);
121 expected_vbits = sar_vbits(opnd1->vbits, shift_amount);
134 term1 = and_vbits(opnd1->vbits, opnd2->vbits);
135 term2 = and_combine(opnd1->vbits, opnd2->vbits, opnd2->value, 0);
136 term3 = and_combine(opnd2->vbits, opnd1->vbits, opnd1->value, 0);
150 term1 = and_vbits(opnd1->vbits, opnd2->vbits);
151 term2 = and_combine(opnd1->vbits, opnd2->vbits, opnd2->value, 1);
152 term3 = and_combine(opnd2->vbits, opnd1->vbits, opnd1->value, 1);
162 expected_vbits = cmpord_vbits(opnd1->vbits.num_bits,