Lines Matching defs:x
34 static inline float sk_float_copysign(float x, float y) { in sk_float_copysign()
41 #define sk_float_sqrt(x) (float)::sqrt(x) argument
42 #define sk_float_sin(x) (float)::sin(x) argument
43 #define sk_float_cos(x) (float)::cos(x) argument
44 #define sk_float_tan(x) (float)::tan(x) argument
45 #define sk_float_acos(x) (float)::acos(x) argument
46 #define sk_float_asin(x) (float)::asin(x) argument
47 #define sk_float_atan2(y,x) (float)::atan2(y,x) argument
48 #define sk_float_abs(x) (float)::fabs(x) argument
49 #define sk_float_mod(x,y) (float)::fmod(x,y) argument
50 #define sk_float_exp(x) (float)::exp(x) argument
51 #define sk_float_log(x) (float)::log(x) argument
52 #define sk_float_floor(x) (float)::floor(x) argument
53 #define sk_float_ceil(x) (float)::ceil(x) argument
55 #define sk_float_sqrt(x) sqrtf(x) argument
56 #define sk_float_sin(x) sinf(x) argument
57 #define sk_float_cos(x) cosf(x) argument
58 #define sk_float_tan(x) tanf(x) argument
59 #define sk_float_floor(x) floorf(x) argument
60 #define sk_float_ceil(x) ceilf(x) argument
62 #define sk_float_acos(x) static_cast<float>(acos(x)) argument
63 #define sk_float_asin(x) static_cast<float>(asin(x)) argument
65 #define sk_float_acos(x) acosf(x) argument
66 #define sk_float_asin(x) asinf(x) argument
68 #define sk_float_atan2(y,x) atan2f(y,x) argument
69 #define sk_float_abs(x) fabsf(x) argument
70 #define sk_float_mod(x,y) fmodf(x,y) argument
71 #define sk_float_exp(x) expf(x) argument
72 #define sk_float_log(x) logf(x) argument
73 #define sk_float_isNaN(x) _isnan(x) argument
77 #define sk_float_floor2int(x) SkFloatToIntFloor(x) argument
78 #define sk_float_round2int(x) SkFloatToIntRound(x) argument
79 #define sk_float_ceil2int(x) SkFloatToIntCeil(x) argument
81 #define sk_float_floor2int(x) (int)sk_float_floor(x) argument
82 #define sk_float_round2int(x) (int)sk_float_floor((x) + 0.5f) argument
83 #define sk_float_ceil2int(x) (int)sk_float_ceil(x) argument