Home
last modified time | relevance | path

Searched refs:lhsWords (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp1478 void APInt::divide(const WordType *LHS, unsigned lhsWords, const WordType *RHS, in divide() argument
1480 assert(lhsWords >= rhsWords && "Fractional result"); in divide()
1490 unsigned m = (lhsWords * 2) - n; in divide()
1515 for (unsigned i = 0; i < lhsWords; ++i) { in divide()
1582 for (unsigned i = 0; i < lhsWords; ++i) in divide()
1611 unsigned lhsWords = getNumWords(getActiveBits()); in udiv() local
1617 if (!lhsWords) in udiv()
1623 if (lhsWords < rhsWords || this->ult(RHS)) in udiv()
1629 if (lhsWords == 1) // rhsWords is 1 if lhsWords is 1. in udiv()
1635 divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal, nullptr); in udiv()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp368 unsigned lhsWords = !lhsBits ? 0 : whichWord(lhsBits - 1) + 1; in operator *=() local
369 if (!lhsWords) in operator *=()
383 unsigned destWords = rhsWords + lhsWords; in operator *=()
387 mul(dest, pVal, lhsWords, RHS.pVal, rhsWords); in operator *=()
1626 void APInt::divide(const APInt &LHS, unsigned lhsWords, const APInt &RHS, in divide() argument
1628 assert(lhsWords >= rhsWords && "Fractional result"); in divide()
1639 unsigned m = (lhsWords * 2) - n; in divide()
1664 for (unsigned i = 0; i < lhsWords; ++i) { in divide()
1747 if (lhsWords == 1) { in divide()
1756 for (unsigned i = 0; i < lhsWords; ++i) in divide()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h184 static void divide(const APInt &LHS, unsigned lhsWords, const APInt &RHS,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h191 static void divide(const WordType *LHS, unsigned lhsWords,