Searched refs:rhsWords (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | APInt.cpp | 1482 unsigned rhsWords, WordType *Quotient, WordType *Remainder) { in divide() argument 1483 assert(lhsWords >= rhsWords && "Fractional result"); in divide() 1492 unsigned n = rhsWords * 2; in divide() 1527 for (unsigned i = 0; i < rhsWords; ++i) { in divide() 1591 for (unsigned i = 0; i < rhsWords; ++i) in divide() 1616 unsigned rhsWords = getNumWords(rhsBits); in udiv() local 1617 assert(rhsWords && "Divided by zero???"); in udiv() 1626 if (lhsWords < rhsWords || this->ult(RHS)) in udiv() 1638 divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal, nullptr); in udiv() 1709 unsigned rhsWords = getNumWords(rhsBits); in urem() local [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| D | APInt.h | 188 const WordType *RHS, unsigned rhsWords, WordType *Quotient,
|