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

References

lib/Support/APInt.cpp
 1771     Quotient = APInt(BitWidth, QuotVal);
 1772     Remainder = APInt(BitWidth, RemVal);
 1784     Quotient = APInt(BitWidth, 0);    // 0 / Y ===> 0
 1785     Remainder = APInt(BitWidth, 0);   // 0 % Y ===> 0
 1791     Remainder = APInt(BitWidth, 0);   // X % 1 ===> 0
 1796     Quotient = APInt(BitWidth, 0);    // X / Y ===> 0, iff X < Y
 1801     Quotient  = APInt(BitWidth, 1);   // X / X ===> 1
 1802     Remainder = APInt(BitWidth, 0);   // X % X ===> 0;
 1810   Quotient.reallocate(BitWidth);
 1811   Remainder.reallocate(BitWidth);
 1827               (getNumWords(BitWidth) - lhsWords) * APINT_WORD_SIZE);
 1829               (getNumWords(BitWidth) - rhsWords) * APINT_WORD_SIZE);