Lines Matching defs:uresult
710 uint32_t uresult, remainder;
726 uresult = remainder + operand2;
736 c0 = uresult < remainder || uresult < (uint32_t) operand2;
738 if (uresult & 0x80000000)
745 if (uresult == 0 && sign == y31)
752 if (sign ^ (uresult >> 31))
762 sregs->y = uresult;
775 uint32_t uresult;
777 mul64 (rs1, operand2, &sregs->y, &uresult, 1);
779 if (uresult & 0x80000000)
784 if (uresult == 0)
789 *rdd = uresult;
799 uint32_t uresult;
801 mul64 (rs1, operand2, &sregs->y, &uresult, 0);
803 if (uresult & 0x80000000)
808 if (uresult == 0)
813 *rdd = uresult;
833 uint32_t uresult;
845 div64 (sregs->y, rs1, operand2, &uresult, 1);
847 if (uresult & 0x80000000)
852 if (uresult == 0)
860 *rdd = uresult;
880 uint32_t uresult;
892 div64 (sregs->y, rs1, operand2, &uresult, 0);
894 if (uresult & 0x80000000)
899 if (uresult == 0)
907 *rdd = uresult;
1170 uint32_t uresult, mask;
1178 uresult = rs1 ^ mask;
1181 if (uresult & 0x80000000)
1183 uresult <<= 1;