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

/external/llvm/include/llvm/Support/
H A DScaledNumber.h309 int32_t ShiftL = std::min<int32_t>(countLeadingZeros(LDigits), ScaleDiff); local
310 assert(ShiftL < getWidth<DigitsT>() && "can't shift more than width");
312 int32_t ShiftR = ScaleDiff - ShiftL;
319 LDigits <<= ShiftL; local
322 LScale -= ShiftL;

Completed in 139 milliseconds