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

References

lib/Support/APInt.cpp
 1577   assert(BitWidth == RHS.BitWidth && "Bit widths must be the same");
 1581     assert(RHS.U.VAL != 0 && "Divide by zero?");
 1582     return APInt(BitWidth, U.VAL / RHS.U.VAL);
 1587   unsigned rhsBits  = RHS.getActiveBits();
 1598   if (lhsWords < rhsWords || this->ult(RHS))
 1601   if (*this == RHS)
 1606     return APInt(BitWidth, this->U.pVal[0] / RHS.U.pVal[0]);
 1610   divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal, nullptr);