reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/APInt.cpp
 1841     Quotient = APInt(BitWidth, QuotVal);
 1850     Quotient = APInt(BitWidth, 0);    // 0 / Y ===> 0
 1856     Quotient = LHS;                   // X / 1 ===> X
 1863     Quotient = APInt(BitWidth, 0);    // X / Y ===> 0, iff X < Y
 1868     Quotient  = APInt(BitWidth, 1);   // X / X ===> 1
 1876   Quotient.reallocate(BitWidth);
 1881     Quotient = lhsValue / RHS;
 1887   divide(LHS.U.pVal, lhsWords, &RHS, 1, Quotient.U.pVal, &Remainder);
 1889   std::memset(Quotient.U.pVal + lhsWords, 0,