Searched refs:lhsValue (Results 1 – 2 of 2) sorted by relevance
1840 uint64_t lhsValue = LHS.U.pVal[0]; in udivrem() local1842 Quotient = lhsValue / rhsValue; in udivrem()1843 Remainder = lhsValue % rhsValue; in udivrem()1905 uint64_t lhsValue = LHS.U.pVal[0]; in udivrem() local1906 Quotient = lhsValue / RHS; in udivrem()1907 Remainder = lhsValue % RHS; in udivrem()
1939 uint64_t lhsValue = LHS.isSingleWord() ? LHS.VAL : LHS.pVal[0]; in udivrem() local1941 Quotient = APInt(LHS.getBitWidth(), lhsValue / rhsValue); in udivrem()1942 Remainder = APInt(LHS.getBitWidth(), lhsValue % rhsValue); in udivrem()