Lines Matching refs:vsqrtx
40 __m512 vsqrtx${ABC[N]} = _mm512_mul_ps(vrsqrtx${ABC[N]}, vx${ABC[N]});
44 … const __m512 vresidual${ABC[N]} = _mm512_fnmadd_ps(vsqrtx${ABC[N]}, vhalfrsqrtx${ABC[N]}, vhalf);
48 vsqrtx${ABC[N]} = _mm512_fmadd_ps(vsqrtx${ABC[N]}, vresidual${ABC[N]}, vsqrtx${ABC[N]});
51 …const __m512 vadjustment${ABC[N]} = _mm512_fnmadd_ps(vsqrtx${ABC[N]}, vsqrtx${ABC[N]}, vx${ABC[N]}…
54 … __m512 vy${ABC[N]} = _mm512_fmadd_ps(vhalfrsqrtx${ABC[N]}, vadjustment${ABC[N]}, vsqrtx${ABC[N]});
66 __m512 vsqrtx = _mm512_mul_ps(vrsqrtx, vx); variable
68 const __m512 vresidual = _mm512_fnmadd_ps(vsqrtx, vhalfrsqrtx, vhalf);
70 vsqrtx = _mm512_fmadd_ps(vsqrtx, vresidual, vsqrtx);
71 const __m512 vadjustment = _mm512_fnmadd_ps(vsqrtx, vsqrtx, vx);
72 const __m512 vy = _mm512_fmadd_ps(vhalfrsqrtx, vadjustment, vsqrtx);
86 __m512 vsqrtx = _mm512_mul_ps(vrsqrtx, vx); variable
88 const __m512 vresidual = _mm512_fnmadd_ps(vsqrtx, vhalfrsqrtx, vhalf);
90 vsqrtx = _mm512_fmadd_ps(vsqrtx, vresidual, vsqrtx);
91 const __m512 vadjustment = _mm512_fnmadd_ps(vsqrtx, vsqrtx, vx);
92 const __m512 vy = _mm512_fmadd_ps(vhalfrsqrtx, vadjustment, vsqrtx);