Searched refs:lhsWords (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DAPInt.cpp366 unsigned lhsWords = !lhsBits ? 0 : whichWord(lhsBits - 1) + 1; local
367 if (!lhsWords)
381 unsigned destWords = rhsWords + lhsWords;
385 mul(dest, pVal, lhsWords, RHS.pVal, rhsWords);
1667 void APInt::divide(const APInt LHS, unsigned lhsWords,
1671 assert(lhsWords >= rhsWords && "Fractional result");
1682 unsigned m = (lhsWords * 2) - n;
1707 for (unsigned i = 0; i < lhsWords; ++i) {
1788 if (lhsWords == 1) {
1797 for (unsigned i = 0; i < lhsWords;
[all...]
/external/llvm/include/llvm/ADT/
H A DAPInt.h180 static void divide(const APInt LHS, unsigned lhsWords, const APInt &RHS,

Completed in 87 milliseconds