Searched defs:rsqrt (Results 1 – 9 of 9) sorted by relevance
43 auto rsqrt = x.rsqrt(), in sk_linear_to_srgb_needs_trunc() local59 auto rsqrt = x.rsqrt(), in sk_linear_to_srgb_needs_round() local
92 AI SkNx rsqrt() const { return { fLo. rsqrt(), fHi. rsqrt() }; } in rsqrt() function
168 rsqrt() const in rsqrt() function
170 static inline float rsqrt(float __a) { return rsqrtf(__a); } in rsqrt() function
62 SI F rsqrt (F v) { return 1.0f / sqrtf(v); } in rsqrt() function90 SI F rsqrt (F v) { auto e = vrsqrteq_f32(v); return vrsqrtsq_f32(v,e*e) * e; } in rsqrt() function119 SI F rsqrt(F v) { auto e = vrsqrte_f32(v); return vrsqrts_f32(v,e*e) * e; } in rsqrt() function158 SI F rsqrt (F v) { return _mm256_rsqrt_ps(v); } in rsqrt() function201 SI F rsqrt(F v) { return _mm_rsqrt_ps(v); } in rsqrt() function
69 AI SkNx rsqrt() const { in rsqrt() function174 AI SkNx rsqrt() const { in rsqrt() function
48 AI SkNx rsqrt() const { return _mm_rsqrt_ps(fVec); } in rsqrt() function130 AI SkNx rsqrt() const { return _mm_rsqrt_ps(fVec); } in rsqrt() function653 AI SkNx rsqrt() const { return _mm256_rsqrt_ps(fVec); } in rsqrt() function
96 rsqrt() const { in rsqrt() function
398 static void test_rsqrt(skiatest::Reporter* reporter, RSqrtFn rsqrt) { in test_rsqrt()