Lines Matching refs:y
60 float Fmod(float x, float y) in Fmod() argument
62 return static_cast<float>(x - static_cast<int>(x / y) * y); in Fmod()
96 uint16_t FastAtan2(int16_t x, int16_t y) in FastAtan2() argument
98 if (x == 0 && y == 0) { in FastAtan2()
103 int16_t absY = MATH_ABS(y); in FastAtan2()
118 if (y < 0) { in FastAtan2()
131 float FastAtan2F(float y, float x) in FastAtan2F() argument
134 float absY = MATH_ABS(y); in FastAtan2F()
151 if (y < 0) { in FastAtan2F()
170 float y = *reinterpret_cast<float*>(&i); in Sqrt() local
171 y = y * (1.5f - (xhalf * y * y)); in Sqrt()
172 y = y * (1.5f - (xhalf * y * y)); in Sqrt()
173 y = y * (1.5f - (xhalf * y * y)); in Sqrt()
174 return x * y; in Sqrt()