reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1771 Quotient = APInt(BitWidth, QuotVal); 1784 Quotient = APInt(BitWidth, 0); // 0 / Y ===> 0 1790 Quotient = LHS; // X / 1 ===> X 1796 Quotient = APInt(BitWidth, 0); // X / Y ===> 0, iff X < Y 1801 Quotient = APInt(BitWidth, 1); // X / X ===> 1 1810 Quotient.reallocate(BitWidth); 1817 Quotient = lhsValue / rhsValue; 1823 divide(LHS.U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal, 1826 std::memset(Quotient.U.pVal + lhsWords, 0,