Searched refs:i4_x (Results 1 – 1 of 1) sorted by relevance
116 static WORD32 gcd(WORD32 i4_x, WORD32 i4_y) in gcd() argument118 if (i4_x > i4_y) in gcd()120 i4_x = i4_y + i4_x; in gcd()121 i4_y = i4_x - i4_y; in gcd()122 i4_x = i4_x - i4_y; in gcd()127 i4_x = i4_x % i4_y; in gcd()128 temp = i4_x; in gcd()129 i4_x = i4_y; in gcd()132 return (i4_x); in gcd()