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

References

lib/Support/APInt.cpp
 1835   unsigned BitWidth = LHS.BitWidth;
 1838   if (LHS.isSingleWord()) {
 1839     uint64_t QuotVal = LHS.U.VAL / RHS;
 1840     Remainder = LHS.U.VAL % RHS;
 1846   unsigned lhsWords = getNumWords(LHS.getActiveBits());
 1856     Quotient = LHS;                   // X / 1 ===> X
 1861   if (LHS.ult(RHS)) {
 1862     Remainder = LHS.getZExtValue();   // X % Y ===> X, iff X < Y
 1867   if (LHS == RHS) {
 1880     uint64_t lhsValue = LHS.U.pVal[0];
 1887   divide(LHS.U.pVal, lhsWords, &RHS, 1, Quotient.U.pVal, &Remainder);