Lines Matching refs:x
7 typeout##2 r = {(typeout)v.x, (typeout)v.y}; \
12 typeout##3 r = {(typeout)v.x, (typeout)v.y, (typeout)v.z}; \
17 typeout##4 r = {(typeout)v.x, (typeout)v.y, (typeout)v.z, \
43 r.x = fnc(v.x); \
49 r.x = fnc(v.x); \
56 r.x = fnc(v.x); \
66 r.x = fnc(v.x); \
72 r.x = fnc(v.x); \
79 r.x = fnc(v.x); \
89 r.x = fnc(v1.x, v2.x); \
95 r.x = fnc(v1.x, v2.x); \
102 r.x = fnc(v1.x, v2.x); \
112 r.x = fnc(v1.x, v2); \
118 r.x = fnc(v1.x, v2); \
125 r.x = fnc(v1.x, v2); \
135 r.x = fnc(v1.x, v2.x); \
141 r.x = fnc(v1.x, v2.x); \
148 r.x = fnc(v1.x, v2.x); \
158 r.x = fnc(v1.x, v2); \
164 r.x = fnc(v1.x, v2); \
171 r.x = fnc(v1.x, v2); \
183 r.x = fnc(v1.x, &t[0]); \
185 v2->x = t[0]; \
193 r.x = fnc(v1.x, &t[0]); \
196 v2->x = t[0]; \
205 r.x = fnc(v1.x, &t[0]); \
209 v2->x = t[0]; \
220 r.x = fnc(v1.x, &t[0]); \
222 v2->x = t[0]; \
229 r.x = fnc(v1.x, &t[0]); \
232 v2->x = t[0]; \
240 r.x = fnc(v1.x, &t[0]); \
244 v2->x = t[0]; \
255 r.x = fnc(v1.x, v2.x, v3.x); \
262 r.x = fnc(v1.x, v2.x, v3.x); \
270 r.x = fnc(v1.x, v2.x, v3.x); \
282 r.x = fnc(v1.x, v2.x, &t[0]); \
284 v3->x = t[0]; \
292 r.x = fnc(v1.x, v2.x, &t[0]); \
295 v3->x = t[0]; \
304 r.x = fnc(v1.x, v2.x, &t[0]); \
308 v3->x = t[0]; \
353 extern float __attribute__((overloadable)) atan2pi(float y, float x) { in FN_FUNC_FN()
354 return atan2(y, x) / M_PI; in FN_FUNC_FN()
518 float2 t = {1.f / r.x, 1.f / r.y}; in rootn()
522 float3 t = {1.f / r.x, 1.f / r.y, 1.f / r.z}; in rootn()
526 float4 t = {1.f / r.x, 1.f / r.y, 1.f / r.z, 1.f / r.w}; in rootn()
594 r.x = fnc(v.x); \
600 r.x = fnc(v.x); \
607 r.x = fnc(v.x); \
637 r.x = fnc(v1.x, v2.x); \
644 r.x = fnc(v1.x, v2.x); \
652 r.x = fnc(v1.x, v2.x); \
685 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); in clamp()
691 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); in clamp()
698 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); in clamp()
706 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x); in clamp()
712 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x); in clamp()
719 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x); in clamp()
763 r.x = (v.x < edge.x) ? 0.f : 1.f; in step()
769 r.x = (v.x < edge.x) ? 0.f : 1.f; in step()
776 r.x = (v.x < edge.x) ? 0.f : 1.f; in step()
784 r.x = (v < edge.x) ? 0.f : 1.f; in step()
790 r.x = (v < edge.x) ? 0.f : 1.f; in step()
797 r.x = (v < edge.x) ? 0.f : 1.f; in step()
823 r.x = lhs.y * rhs.z - lhs.z * rhs.y; in FN_FUNC_FN()
824 r.y = lhs.z * rhs.x - lhs.x * rhs.z; in FN_FUNC_FN()
825 r.z = lhs.x * rhs.y - lhs.y * rhs.x; in FN_FUNC_FN()
831 r.x = lhs.y * rhs.z - lhs.z * rhs.y; in cross()
832 r.y = lhs.z * rhs.x - lhs.x * rhs.z; in cross()
833 r.z = lhs.x * rhs.y - lhs.y * rhs.x; in cross()
842 return lhs.x*rhs.x + lhs.y*rhs.y; in dot()
845 return lhs.x*rhs.x + lhs.y*rhs.y + lhs.z*rhs.z; in dot()
848 return lhs.x*rhs.x + lhs.y*rhs.y + lhs.z*rhs.z + lhs.w*rhs.w; in dot()
855 return sqrt(v.x*v.x + v.y*v.y); in length()
858 return sqrt(v.x*v.x + v.y*v.y + v.z*v.z); in length()
861 return sqrt(v.x*v.x + v.y*v.y + v.z*v.z + v.w*v.w); in length()