Home
last modified time | relevance | path

Searched defs:rsqrt (Results 1 – 9 of 9) sorted by relevance

/external/skia/src/core/
DSkSRGB.h43 auto rsqrt = x.rsqrt(), in sk_linear_to_srgb_needs_trunc() local
59 auto rsqrt = x.rsqrt(), in sk_linear_to_srgb_needs_round() local
DSkNx.h92 AI SkNx rsqrt() const { return { fLo. rsqrt(), fHi. rsqrt() }; } in rsqrt() function
/external/eigen/Eigen/src/plugins/
DArrayCwiseUnaryOps.h168 rsqrt() const in rsqrt() function
/external/clang/lib/Headers/
D__clang_cuda_runtime_wrapper.h170 static inline float rsqrt(float __a) { return rsqrtf(__a); } in rsqrt() function
/external/skia/src/jumper/
DSkJumper_stages.cpp62 SI F rsqrt (F v) { return 1.0f / sqrtf(v); } in rsqrt() function
90 SI F rsqrt (F v) { auto e = vrsqrteq_f32(v); return vrsqrtsq_f32(v,e*e) * e; } in rsqrt() function
119 SI F rsqrt(F v) { auto e = vrsqrte_f32(v); return vrsqrts_f32(v,e*e) * e; } in rsqrt() function
158 SI F rsqrt (F v) { return _mm256_rsqrt_ps(v); } in rsqrt() function
201 SI F rsqrt(F v) { return _mm_rsqrt_ps(v); } in rsqrt() function
/external/skia/src/opts/
DSkNx_neon.h69 AI SkNx rsqrt() const { in rsqrt() function
174 AI SkNx rsqrt() const { in rsqrt() function
DSkNx_sse.h48 AI SkNx rsqrt() const { return _mm_rsqrt_ps(fVec); } in rsqrt() function
130 AI SkNx rsqrt() const { return _mm_rsqrt_ps(fVec); } in rsqrt() function
653 AI SkNx rsqrt() const { return _mm256_rsqrt_ps(fVec); } in rsqrt() function
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBase.h96 rsqrt() const { in rsqrt() function
/external/skia/tests/
DMathTest.cpp398 static void test_rsqrt(skiatest::Reporter* reporter, RSqrtFn rsqrt) { in test_rsqrt()