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

/external/llvm/include/llvm/Support/
H A DScaledNumber.h842 int32_t ScaleShift = std::min(Shift, ScaledNumbers::MaxScale - Scale); local
843 Scale += ScaleShift;
844 if (ScaleShift == Shift)
852 Shift -= ScaleShift;
873 int32_t ScaleShift = std::min(Shift, Scale - ScaledNumbers::MinScale); local
874 Scale -= ScaleShift;
875 if (ScaleShift == Shift)
879 Shift -= ScaleShift;

Completed in 397 milliseconds