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

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

Completed in 711 milliseconds