Searched refs:a (Results 1 – 2 of 2) sorted by relevance
125 private long gcd(long a, long b) { in gcd() argument126 if (a == 0) in gcd()129 return a; in gcd()130 if (a > b) in gcd()131 return gcd(b, a % b); in gcd()133 return gcd(a, b % a); in gcd()
6 # You may obtain a copy of the License at