Home
last modified time | relevance | path

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

/external/libavc/encoder/
Dih264e_time_stamp.c116 static WORD32 gcd(WORD32 i4_x, WORD32 i4_y) in gcd() argument
118 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()
124 while (i4_y != 0) in gcd()
127 i4_x = i4_x % i4_y; in gcd()
129 i4_x = i4_y; in gcd()
130 i4_y = temp; in gcd()