Searched refs:rhsWords (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APInt.cpp | 1421 unsigned rhsWords, WordType *Quotient, WordType *Remainder) { in divide() argument 1422 assert(lhsWords >= rhsWords && "Fractional result"); in divide() 1431 unsigned n = rhsWords * 2; in divide() 1466 for (unsigned i = 0; i < rhsWords; ++i) { in divide() 1530 for (unsigned i = 0; i < rhsWords; ++i) in divide() 1555 unsigned rhsWords = getNumWords(rhsBits); in udiv() local 1556 assert(rhsWords && "Divided by zero???"); in udiv() 1565 if (lhsWords < rhsWords || this->ult(RHS)) in udiv() 1577 divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal, nullptr); in udiv() 1648 unsigned rhsWords = getNumWords(rhsBits); in urem() local [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APInt.h | 1983 const WordType *RHS, unsigned rhsWords, WordType *Quotient,
|