Lines Matching defs:x
150 static INLINE float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); } in truncf()
151 static INLINE float exp2f(float x) { return powf(2.0f, x); } in exp2f()
152 static INLINE float log2f(float x) { return logf(x) * 1.442695041f; } in log2f()
153 static INLINE float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); } in asinhf()
154 static INLINE float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); } in acoshf()
155 static INLINE float atanhf(float x) { return (logf(1.0f + x) - logf(1.0f - x)) / 2.0f; } in atanhf()
197 #define LOG2(x) ((GLfloat) (log(x) * 1.442695F)) argument
205 static INLINE int IS_INF_OR_NAN( float x ) in IS_INF_OR_NAN()
212 #define IS_INF_OR_NAN(x) (!isfinite(x)) argument
214 #define IS_INF_OR_NAN(x) (!finite(x)) argument
216 #define IS_INF_OR_NAN(x) (!finite(x)) argument
218 #define IS_INF_OR_NAN(x) (!isfinite(x)) argument
220 #define IS_INF_OR_NAN(x) (!finite(x)) argument
228 static INLINE int GET_FLOAT_BITS( float x ) in GET_FLOAT_BITS()
234 #define IS_NEGATIVE(x) (GET_FLOAT_BITS(x) < 0) argument
236 #define IS_NEGATIVE(x) (x < 0.0F) argument
244 #define DIFFERENT_SIGNS(x,y) ((GET_FLOAT_BITS(x) ^ GET_FLOAT_BITS(y)) & (1<<31)) argument
249 #define DIFFERENT_SIGNS(x,y) ((x) * (y) <= 0.0F && (x) - (y) != 0.0F) argument
264 #define CEILF(x) ceilf(x) argument
265 #define FLOORF(x) floorf(x) argument
266 #define FABSF(x) fabsf(x) argument
267 #define LOGF(x) logf(x) argument
268 #define EXPF(x) expf(x) argument
269 #define LDEXPF(x,y) ldexpf(x,y) argument
270 #define FREXPF(x,y) frexpf(x,y) argument
272 #define CEILF(x) ((GLfloat) ceil(x)) argument
273 #define FLOORF(x) ((GLfloat) floor(x)) argument
274 #define FABSF(x) ((GLfloat) fabs(x)) argument
275 #define LOGF(x) ((GLfloat) log(x)) argument
276 #define EXPF(x) ((GLfloat) exp(x)) argument
277 #define LDEXPF(x,y) ((GLfloat) ldexp(x,y)) argument
278 #define FREXPF(x,y) ((GLfloat) frexp(x,y)) argument
292 #define IROUND(x) iround(x) argument
303 #define IROUND(x) iround(x) argument
313 #define IROUND(x) iround(x) argument
352 #define IFLOOR(x) ifloor(x) argument
366 #define IFLOOR(x) ifloor(x) argument
373 #define IFLOOR(x) ifloor(x) argument
399 #define ICEIL(x) iceil(x) argument
412 #define ICEIL(x) iceil(x) argument
419 #define ICEIL(x) iceil(x) argument
427 _mesa_is_pow_two(int x) in _mesa_is_pow_two()
447 _mesa_next_pow_two_32(uint32_t x) in _mesa_next_pow_two_32()
466 _mesa_next_pow_two_64(uint64_t x) in _mesa_next_pow_two_64()