OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rsqrt0
(Results
1 - 4
of
4
) sorted by null
/external/skia/src/core/
SkNx.h
54
OP(sqrt) OP(
rsqrt0
) OP(rsqrt1) OP(rsqrt2)
128
SkNx
rsqrt0
() const { return this->sqrt().invert(); }
function in class:SkNx
129
SkNx rsqrt1() const { return this->
rsqrt0
(); }
/external/skia/src/opts/
SkNx_neon.h
91
SkNx
rsqrt0
() const { return vrsqrte_f32(fVec); }
function in class:SkNx
93
float32x2_t est0 = this->
rsqrt0
().fVec;
182
SkNx
rsqrt0
() const { return vrsqrteq_f32(fVec); }
function in class:SkNx
184
float32x4_t est0 = this->
rsqrt0
().fVec;
SkNx_sse.h
56
SkNx
rsqrt0
() const { return _mm_rsqrt_ps(fVec); }
function in class:SkNx
57
SkNx rsqrt1() const { return this->
rsqrt0
(); }
107
SkNx
rsqrt0
() const { return _mm_rsqrt_ps(fVec); }
function in class:SkNx
108
SkNx rsqrt1() const { return this->
rsqrt0
(); }
/external/skia/tests/
SkNxTest.cpp
56
assert_nearly_eq(0.001f, fours.
rsqrt0
(), 0.5, 0.5, 0.5, 0.5);
Completed in 56 milliseconds