Home
last modified time | relevance | path

Searched refs:Pow2_A (Results 1 – 1 of 1) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp737 unsigned Pow2_A = A.countTrailingZeros(); in GreatestCommonDivisor() local
739 if (Pow2_A > Pow2_B) { in GreatestCommonDivisor()
740 A.lshrInPlace(Pow2_A - Pow2_B); in GreatestCommonDivisor()
742 } else if (Pow2_B > Pow2_A) { in GreatestCommonDivisor()
743 B.lshrInPlace(Pow2_B - Pow2_A); in GreatestCommonDivisor()
744 Pow2 = Pow2_A; in GreatestCommonDivisor()
746 Pow2 = Pow2_A; in GreatestCommonDivisor()