Lines Matching refs:opnd2
50 divsim(int opnd1, int opnd2, struct mdsfu_register *result)
55 if (opnd2 == 0) {
61 sign = opnd1 ^ opnd2;
69 if (opnd2 < 0) opnd2 = -opnd2;
71 /* check for opnd2 == -2**31 */
72 if (opnd2 < 0) {
73 if (opnd1 == opnd2) {
84 divu(0,opnd1,opnd2,result);
90 * is with opnd1 = -2**31 and opnd2 = -1
101 result_hi = opnd2 - result_hi;