Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp810 unsigned Pow2_B = B.countr_zero(); in GreatestCommonDivisor() local
811 if (Pow2_A > Pow2_B) { in GreatestCommonDivisor()
812 A.lshrInPlace(Pow2_A - Pow2_B); in GreatestCommonDivisor()
813 Pow2 = Pow2_B; in GreatestCommonDivisor()
814 } else if (Pow2_B > Pow2_A) { in GreatestCommonDivisor()
815 B.lshrInPlace(Pow2_B - Pow2_A); in GreatestCommonDivisor()