HomeSort by relevance Sort by last modified time
    Searched defs:Sqrt (Results 1 - 12 of 12) 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 124 *stddev = Sqrt(avg_squares - Sqr(mean));
134 return Sqrt(avg_squares - Sqr(mean));
173 static inline SType Sqrt(const SType &dat) {
176 return sqrt(dat);
180 static inline Vector2<SType> Sqrt(const Vector2<SType> &dat) {
182 return Max(dat, Vector2<SType>()).Sqrt();
186 static inline Vector3<SType> Sqrt(const Vector3<SType> &dat) {
188 return Max(dat, Vector3<SType>()).Sqrt();
192 static inline Vector4<SType> Sqrt(const Vector4<SType> &dat) {
194 return Max(dat, Vector4<SType>()).Sqrt();
    [all...]
  /external/skia/src/core/
SkNx.h 54 OP(sqrt) OP(rsqrt0) OP(rsqrt1) OP(rsqrt2)
127 SkNx sqrt () const { return Sqrt(fVal); } function in class:SkNx
128 SkNx rsqrt0() const { return this->sqrt().invert(); }
147 static double Sqrt(double val) { return ::sqrt (val); }
148 static float Sqrt(float val) { return ::sqrtf(val); }
  /prebuilts/go/darwin-x86/src/runtime/
export_test.go 20 var Sqrt = sqrt
  /prebuilts/go/linux-x86/src/runtime/
export_test.go 20 var Sqrt = sqrt
  /external/opencv3/modules/core/test/ocl/
test_arithm.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 2265 milliseconds