Searched refs:rhsWords (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | APInt.cpp | 375 unsigned rhsWords = !rhsBits ? 0 : whichWord(rhsBits - 1) + 1; in operator *=() local 376 if (!rhsWords) { in operator *=() 383 unsigned destWords = rhsWords + lhsWords; in operator *=() 387 mul(dest, pVal, lhsWords, RHS.pVal, rhsWords); in operator *=() 1627 unsigned rhsWords, APInt *Quotient, APInt *Remainder) { in divide() argument 1628 assert(lhsWords >= rhsWords && "Fractional result"); in divide() 1638 unsigned n = rhsWords * 2; in divide() 1673 for (unsigned i = 0; i < rhsWords; ++i) { in divide() 1778 if (rhsWords == 1) { in divide() 1787 for (unsigned i = 0; i < rhsWords; ++i) in divide() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 1479 unsigned rhsWords, WordType *Quotient, WordType *Remainder) { in divide() argument 1480 assert(lhsWords >= rhsWords && "Fractional result"); in divide() 1489 unsigned n = rhsWords * 2; in divide() 1524 for (unsigned i = 0; i < rhsWords; ++i) { in divide() 1588 for (unsigned i = 0; i < rhsWords; ++i) in divide() 1613 unsigned rhsWords = getNumWords(rhsBits); in udiv() local 1614 assert(rhsWords && "Divided by zero???"); in udiv() 1623 if (lhsWords < rhsWords || this->ult(RHS)) in udiv() 1635 divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal, nullptr); in udiv() 1706 unsigned rhsWords = getNumWords(rhsBits); in urem() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APInt.h | 185 unsigned rhsWords, APInt *Quotient, APInt *Remainder);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 192 const WordType *RHS, unsigned rhsWords, WordType *Quotient,
|