HomeSort by relevance Sort by last modified time
    Searched defs:ScaleShift (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Support/
ScaledNumber.h 844 int32_t ScaleShift = std::min(Shift, ScaledNumbers::MaxScale - Scale);
845 Scale += ScaleShift;
846 if (ScaleShift == Shift)
854 Shift -= ScaleShift;
874 int32_t ScaleShift = std::min(Shift, Scale - ScaledNumbers::MinScale);
875 Scale -= ScaleShift;
876 if (ScaleShift == Shift)
880 Shift -= ScaleShift;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
ScaledNumber.h 844 int32_t ScaleShift = std::min(Shift, ScaledNumbers::MaxScale - Scale);
845 Scale += ScaleShift;
846 if (ScaleShift == Shift)
854 Shift -= ScaleShift;
874 int32_t ScaleShift = std::min(Shift, Scale - ScaledNumbers::MinScale);
875 Scale -= ScaleShift;
876 if (ScaleShift == Shift)
880 Shift -= ScaleShift;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
ModuleSummaryIndex.h 67 /// a scaled number with a scale of \p -ScaleShift.
69 static constexpr int32_t ScaleShift = 8;
87 /// scale of -ScaleShift.
92 Scaled64 Temp(BlockFreq, ScaleShift);
    [all...]

Completed in 154 milliseconds