Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp778 unsigned Pow2_A = A.countr_zero(); in GreatestCommonDivisor() local
780 if (Pow2_A > Pow2_B) { in GreatestCommonDivisor()
781 A.lshrInPlace(Pow2_A - Pow2_B); in GreatestCommonDivisor()
783 } else if (Pow2_B > Pow2_A) { in GreatestCommonDivisor()
784 B.lshrInPlace(Pow2_B - Pow2_A); in GreatestCommonDivisor()
785 Pow2 = Pow2_A; in GreatestCommonDivisor()
787 Pow2 = Pow2_A; in GreatestCommonDivisor()