HomeSort by relevance Sort by last modified time
    Searched defs:Sqrt (Results 1 - 22 of 22) sorted by null

  /prebuilts/go/darwin-x86/src/math/cmplx/
sqrt.go 56 // Sqrt returns the square root of x.
58 func Sqrt(x complex128) complex128 {
64 return complex(0, math.Sqrt(-real(x)))
66 return complex(math.Sqrt(real(x)), 0)
70 r := math.Sqrt(-0.5 * imag(x))
73 r := math.Sqrt(0.5 * imag(x))
92 t = math.Sqrt(0.5*r + 0.5*a)
96 r = math.Sqrt(0.5*r - 0.5*a)
  /prebuilts/go/linux-x86/src/math/cmplx/
sqrt.go 56 // Sqrt returns the square root of x.
58 func Sqrt(x complex128) complex128 {
64 return complex(0, math.Sqrt(-real(x)))
66 return complex(math.Sqrt(real(x)), 0)
70 r := math.Sqrt(-0.5 * imag(x))
73 r := math.Sqrt(0.5 * imag(x))
92 t = math.Sqrt(0.5*r + 0.5*a)
96 r = math.Sqrt(0.5*r - 0.5*a)
  /prebuilts/go/darwin-x86/src/math/
sqrt.go 22 // Return correctly rounded sqrt.
24 // | Use the hardware sqrt if you have one |
31 // sqrt(x) = 2**k * sqrt(y)
33 // Let q = sqrt(y) truncated to i bit after binary point (q = 1),
85 // Sqrt returns the square root of x.
88 // Sqrt(+Inf) = +Inf
89 // Sqrt(±0) = ±0
90 // Sqrt(x < 0) = NaN
91 // Sqrt(NaN) = Na
99 func sqrt(x float64) float64 { func
    [all...]
  /prebuilts/go/linux-x86/src/math/
sqrt.go 22 // Return correctly rounded sqrt.
24 // | Use the hardware sqrt if you have one |
31 // sqrt(x) = 2**k * sqrt(y)
33 // Let q = sqrt(y) truncated to i bit after binary point (q = 1),
85 // Sqrt returns the square root of x.
88 // Sqrt(+Inf) = +Inf
89 // Sqrt(±0) = ±0
90 // Sqrt(x < 0) = NaN
91 // Sqrt(NaN) = Na
99 func sqrt(x float64) float64 { func
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
error.go 55 func Sqrt(f float64) (float64, error) {
66 f, err := Sqrt(-1)
  /prebuilts/go/linux-x86/doc/progs/
error.go 55 func Sqrt(f float64) (float64, error) {
66 f, err := Sqrt(-1)
  /external/google-benchmark/src/
stat.h 127 *stddev = Sqrt(numsamples_ / (numsamples_ - 1.0) * (avg_squares - Sqr(mean)));
176 static inline SType Sqrt(const SType &dat) {
179 return sqrt(dat);
183 static inline Vector2<SType> Sqrt(const Vector2<SType> &dat) {
185 return Max(dat, Vector2<SType>()).Sqrt();
189 static inline Vector3<SType> Sqrt(const Vector3<SType> &dat) {
191 return Max(dat, Vector3<SType>()).Sqrt();
195 static inline Vector4<SType> Sqrt(const Vector4<SType> &dat) {
197 return Max(dat, Vector4<SType>()).Sqrt();
  /external/libcxx/utils/google-benchmark/src/
stat.h 123 *stddev = Sqrt(avg_squares - Sqr(mean));
133 return Sqrt(avg_squares - Sqr(mean));
172 static inline SType Sqrt(const SType &dat) {
175 return sqrt(dat);
179 static inline Vector2<SType> Sqrt(const Vector2<SType> &dat) {
181 return Max(dat, Vector2<SType>()).Sqrt();
185 static inline Vector3<SType> Sqrt(const Vector3<SType> &dat) {
187 return Max(dat, Vector3<SType>()).Sqrt();
191 static inline Vector4<SType> Sqrt(const Vector4<SType> &dat) {
193 return Max(dat, Vector4<SType>()).Sqrt();
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
int.go 713 return z.SetInt64(0) // sqrt(0) mod p = 0
931 // Sqrt sets z to ??x?, the largest integer such that z² ? x, and returns z.
933 func (z *Int) Sqrt(x *Int) *Int {
938 z.abs = z.abs.sqrt(x.abs)
  /prebuilts/go/darwin-x86/src/runtime/
export_test.go 24 var Sqrt = sqrt
  /prebuilts/go/linux-x86/src/math/big/
int.go 713 return z.SetInt64(0) // sqrt(0) mod p = 0
931 // Sqrt sets z to ??x?, the largest integer such that z² ? x, and returns z.
933 func (z *Int) Sqrt(x *Int) *Int {
938 z.abs = z.abs.sqrt(x.abs)
  /prebuilts/go/linux-x86/src/runtime/
export_test.go 24 var Sqrt = sqrt
  /external/skia/src/core/
SkNx.h 91 AI SkNx sqrt() const { return { fLo. sqrt(), fHi. sqrt() }; } function in struct:__anon30906::SkNx
180 AI SkNx sqrt() const { return Sqrt(fVal); } function in struct:__anon30906::SkNx
181 AI SkNx rsqrt() const { return T(1) / this->sqrt(); }
224 AI static float Sqrt(float val) { return ::sqrtf(val); }
228 AI static double Sqrt(double val) { return ::sqrt(val); }
  /external/swiftshader/third_party/subzero/src/
IceIntrinsics.h 60 Sqrt,
IceInstX86Base.h 179 Sqrt,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 871 // Expand pow(x, 0.5) to (x == -infinity ? +infinity : fabs(sqrt(x))).
874 // TODO: In fast-math mode, this could be just sqrt(x).
875 // TODO: In finite-only mode, this could be just fabs(sqrt(x)).
878 Value *Sqrt = EmitUnaryFloatFnCall(Op1, "sqrt", B,
880 Value *FAbs = EmitUnaryFloatFnCall(Sqrt, "fabs", B,
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
OpenCL.std.h 97 Sqrt = 61,
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/external/spirv-headers/include/spirv/1.0/
OpenCL.std.h 97 Sqrt = 61,
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/external/spirv-headers/include/spirv/1.1/
OpenCL.std.h 97 Sqrt = 61,
  /external/swiftshader/src/Reactor/
LLVMReactor.cpp     [all...]
  /external/v8/src/s390/
macro-assembler-s390.cc     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 949 milliseconds