Lines Matching refs:__w
581 _mm_set_ss(float __w)
583 return (__m128){ __w, 0, 0, 0 };
587 _mm_set1_ps(float __w)
589 return (__m128){ __w, __w, __w, __w };
594 _mm_set_ps1(float __w)
596 return _mm_set1_ps(__w);
600 _mm_set_ps(float __z, float __y, float __x, float __w)
602 return (__m128){ __w, __x, __y, __z };
606 _mm_setr_ps(float __z, float __y, float __x, float __w)
608 return (__m128){ __z, __y, __x, __w };