Home
last modified time | relevance | path

Searched refs:dot0 (Results 1 – 6 of 6) sorted by relevance

/external/oboe/samples/RhythmGame/third_party/glm/simd/
Dgeometric.h15 glm_vec4 const dot0 = glm_vec4_dot(x, x); in glm_vec4_length() local
16 glm_vec4 const sqt0 = _mm_sqrt_ps(dot0); in glm_vec4_length()
79 glm_vec4 const dot0 = glm_vec4_dot(v, v); in glm_vec4_normalize() local
80 glm_vec4 const isr0 = _mm_rsqrt_ps(dot0); in glm_vec4_normalize()
87 glm_vec4 const dot0 = glm_vec4_dot(Nref, I); in glm_vec4_faceforward() local
88 glm_vec4 const sgn0 = glm_vec4_sign(dot0); in glm_vec4_faceforward()
96 glm_vec4 const dot0 = glm_vec4_dot(N, I); in glm_vec4_reflect() local
97 glm_vec4 const mul0 = _mm_mul_ps(N, dot0); in glm_vec4_reflect()
105 glm_vec4 const dot0 = glm_vec4_dot(N, I); in glm_vec4_refract() local
107 glm_vec4 const mul1 = _mm_mul_ps(dot0, dot0); in glm_vec4_refract()
[all …]
/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Dsimd_vec4.inl533 detail::fvec4SIMD dot0 = detail::sse_dot_ss(x.Data, x.Data); local
534 detail::fvec4SIMD sqt0 = sqrt(dot0);
545 detail::fvec4SIMD dot0 = detail::sse_dot_ss(x.Data, x.Data); local
546 detail::fvec4SIMD sqt0 = fastSqrt(dot0);
557 detail::fvec4SIMD dot0 = detail::sse_dot_ss(x.Data, x.Data); local
558 detail::fvec4SIMD sqt0 = niceSqrt(dot0);
642 __m128 dot0 = detail::sse_dot_ps(x.Data, x.Data); local
643 __m128 isr0 = inversesqrt(detail::fvec4SIMD(dot0)).Data;
653 __m128 dot0 = detail::sse_dot_ps(x.Data, x.Data); local
654 __m128 isr0 = fastInversesqrt(dot0).Data;
/external/tensorflow/tensorflow/compiler/xla/service/
Dheap_simulator_test.cc761 auto dot0 = builder.AddInstruction(HloInstruction::CreateDot( in TEST_F() local
764 f32vec4_, dot0, paramY, dot_dnums, DefaultPrecisionConfig(2))); in TEST_F()
770 {paramA, paramX, mul, paramY, dot0, dot1}); in TEST_F()
776 {kAlloc, tracker.BufferAt(dot0, {})}, in TEST_F()
779 {kFree, tracker.BufferAt(dot0, {})}, in TEST_F()
802 auto dot0 = builder.AddInstruction(HloInstruction::CreateDot( in TEST_F() local
805 f32vec4_, dot0, paramY, dot_dnums, DefaultPrecisionConfig(2))); in TEST_F()
807 builder.AddInstruction(HloInstruction::CreateTuple({dot0, dot1})); in TEST_F()
814 {paramA, paramX, mul, paramY, dot0, dot1, tuple}); in TEST_F()
820 {kAlloc, tracker.BufferAt(dot0, {})}, in TEST_F()
[all …]
/external/skqp/src/gpu/ccpr/
DGrCCFillGeometry.cpp122 float dot0 = dot(tan0, v); in is_convex_curve_monotonic() local
127 float tolerance = -std::max(std::abs(dot0), std::abs(dot1)) * SK_ScalarNearlyZero; in is_convex_curve_monotonic()
128 return dot0 >= tolerance && dot1 >= tolerance; in is_convex_curve_monotonic()
/external/deqp/modules/gles2/functional/
Des2fMultisampleTests.cpp102 int dot0 = (point.x()-p0.x()) * (p1.y()-p0.y()) + (point.y()-p0.y()) * (p0.x()-p1.x()); in isInsideQuad() local
107 return (dot0 > 0) == (dot1 > 0) && (dot1 > 0) == (dot2 > 0) && (dot2 > 0) == (dot3 > 0); in isInsideQuad()
/external/deqp/modules/gles3/functional/
Des3fMultisampleTests.cpp104 int dot0 = (point.x()-p0.x()) * (p1.y()-p0.y()) + (point.y()-p0.y()) * (p0.x()-p1.x()); in isInsideQuad() local
109 return (dot0 > 0) == (dot1 > 0) && (dot1 > 0) == (dot2 > 0) && (dot2 > 0) == (dot3 > 0); in isInsideQuad()