Searched refs:Sqrt (Results 1 - 19 of 19) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DStats.cs83 return Math.Sqrt( s2 );
99 return Math.Sqrt( s2 );
/external/google-benchmark/src/
H A Dstat.h123 *stddev = Sqrt(avg_squares - Sqr(mean));
133 return Sqrt(avg_squares - Sqr(mean));
172 static inline SType Sqrt(const SType &dat) { function in class:benchmark::Stat1
179 static inline Vector2<SType> Sqrt(const Vector2<SType> &dat) { function in class:benchmark::Stat1
181 return Max(dat, Vector2<SType>()).Sqrt();
185 static inline Vector3<SType> Sqrt(const Vector3<SType> &dat) { function in class:benchmark::Stat1
187 return Max(dat, Vector3<SType>()).Sqrt();
191 static inline Vector4<SType> Sqrt(const Vector4<SType> &dat) { function in class:benchmark::Stat1
193 return Max(dat, Vector4<SType>()).Sqrt();
/external/libcxx/utils/google-benchmark/src/
H A Dstat.h123 *stddev = Sqrt(avg_squares - Sqr(mean));
133 return Sqrt(avg_squares - Sqr(mean));
172 static inline SType Sqrt(const SType &dat) { function in class:benchmark::Stat1
179 static inline Vector2<SType> Sqrt(const Vector2<SType> &dat) { function in class:benchmark::Stat1
181 return Max(dat, Vector2<SType>()).Sqrt();
185 static inline Vector3<SType> Sqrt(const Vector3<SType> &dat) { function in class:benchmark::Stat1
187 return Max(dat, Vector3<SType>()).Sqrt();
191 static inline Vector4<SType> Sqrt(const Vector4<SType> &dat) { function in class:benchmark::Stat1
193 return Max(dat, Vector4<SType>()).Sqrt();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DStats.cs75 return Math.Sqrt(s2);
88 return Math.Sqrt(s2);
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DOpenCL.std.h97 Sqrt = 61, enumerator in enum:OpenCLLIB::Entrypoints
H A DSPIRVExtInst.h122 add(OpenCLLIB::Sqrt, "sqrt");
/external/swiftshader/src/Shader/
H A DShaderCore.cpp317 rsq = Float4(1.0f) / Sqrt(abs);
414 return x * (Float4(1.57079632e+0f) - Sqrt(Float4(1.0f) - x*x) * Float4(6.28318531e-1f));
479 return logarithm(x + Sqrt(x + Float4(1.0f)) * Sqrt(x - Float4(1.0f)), pp);
484 return logarithm(x + Sqrt(x * x + Float4(1.0f)), pp);
859 dst.x = Sqrt(src.x);
860 dst.y = Sqrt(src.y);
861 dst.z = Sqrt(src.z);
862 dst.w = Sqrt(src.w);
875 dst = Sqrt(dot
[all...]
H A DVertexPipeline.cpp507 f = Sqrt(dot3(vertexPosition, vertexPosition)); // FIXME: f = length(vertexPosition);
818 Float4 d = Sqrt(dot3(p, p)); // FIXME: length(p);
/external/eigen/Eigen/src/Core/
H A DAssign_MKL.h132 EIGEN_MKL_VML_DECLARE_UNARY_CALLS(sqrt, Sqrt, _)
/external/skia/src/core/
H A DSkNx.h180 AI SkNx sqrt() const { return Sqrt(fVal); }
222 AI static float Sqrt(float val) { return ::sqrtf(val); } function in struct:__anon16972::SkNx
226 AI static double Sqrt(double val) { return ::sqrt(val); } function in struct:__anon16972::SkNx
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1061 Value *Sqrt = emitUnaryFloatFnCall(Op1, "sqrt", B, Callee->getAttributes());
1063 emitUnaryFloatFnCall(Sqrt, "fabs", B, Callee->getAttributes());
1309 Value *Sqrt = Intrinsic::getDeclaration(M, Intrinsic::sqrt, ArgType);
1310 Value *SqrtCall = B.CreateCall(Sqrt, OtherOp, "sqrt");
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp878 Value *Sqrt = EmitUnaryFloatFnCall(Op1, "sqrt", B, local
880 Value *FAbs = EmitUnaryFloatFnCall(Sqrt, "fabs", B,
/external/v8/src/runtime/
H A Druntime-simd.cc347 RUNTIME_FUNCTION(Runtime_##type##Sqrt) { \
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp2212 DEFINE_DERIVED_FLOAT1(Sqrt, sqrt, x, constant(1.0f) / app<InverseSqrt>(x));
5143 addScalarFactory<Sqrt>(*funcs);
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp2233 DEFINE_DERIVED_FLOAT1(Sqrt, sqrt, x, constant(1.0f) / app<InverseSqrt>(x));
5243 addScalarFactory<Sqrt>(*funcs);
/external/swiftshader/src/Reactor/
H A DNucleus.hpp1908 RValue<Float> Sqrt(RValue<Float> x);
2386 RValue<Float4> Sqrt(RValue<Float4> x);
H A DNucleus.cpp6126 RValue<Float> Sqrt(RValue<Float> x) function in namespace:sw
6646 RValue<Float4> Sqrt(RValue<Float4> x) function in namespace:sw
/external/skia/src/sksl/
H A DSkSLSPIRVCodeGenerator.cpp64 fIntrinsicMap[SkString("sqrt")] = ALL_GLSL(Sqrt);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp14017 SDValue Sqrt = RHS; local
14036 Sqrt.getOperand(0) == CmpLHS && (CC == ISD::SETOLT ||
14039 CombineTo(TheSelect, Sqrt);

Completed in 667 milliseconds