HomeSort by relevance Sort by last modified time
    Searched defs:sqrt (Results 1 - 25 of 317) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/x86/
sqrt.S 33 ENTRY(sqrt) function
41 END(sqrt)
43 ALIAS_SYMBOL(sqrtl, sqrt);
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
w_sqrt.c 19 * wrapper sqrt(x)
26 sqrt(double x) /* wrapper sqrt */ function
35 return __kernel_standard(x,x,26); /* sqrt(negative) */
  /bionic/libm/arm/
sqrt.S 35 ENTRY(sqrt) function
40 END(sqrt)
49 ALIAS_SYMBOL(sqrtl, sqrt);
  /bionic/libm/arm64/
sqrt.S 19 ENTRY(sqrt) function
22 END(sqrt)
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue16804.go 7 // Issue 16804: internal error for math.Sqrt as statement
14 func sqrt() { func
15 math.Sqrt(2.0)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue16804.go 7 // Issue 16804: internal error for math.Sqrt as statement
14 func sqrt() { func
15 math.Sqrt(2.0)
  /bionic/libm/x86_64/
sqrt.S 33 ENTRY(sqrt) function
36 END(sqrt)
  /external/clang/test/CodeGen/
arm-vfp-asm-constraint.c 22 double sqrt(double x) { // CHECK-LABEL: @sqrt( function
  /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...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFloatMath.java 47 public static float sqrt(float value) { method in class:ShadowFloatMath
48 return (float) Math.sqrt(value);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowFloatMath.java 47 public static float sqrt(float value) { method in class:ShadowFloatMath
48 return (float) Math.sqrt(value);
  /external/skia/src/core/
SkSRGB.h 36 sqrt = rsqrt.invert(), local
42 SkNx_fma(Sk4f{+0.687999f * 255.0f}, sqrt,
  /external/skqp/src/core/
SkSRGB.h 36 sqrt = rsqrt.invert(), local
42 SkNx_fma(Sk4f{+0.687999f * 255.0f}, sqrt,
  /prebuilts/go/darwin-x86/src/runtime/
sqrt.go 5 // Copy of math/sqrt.go, here for use by ARM softfloat.
8 // while emulating the sqrt instruction.
27 // Return correctly rounded sqrt.
29 // | Use the hardware sqrt if you have one |
36 // sqrt(x) = 2**k * sqrt(y)
38 // Let q = sqrt(y) truncated to i bit after binary point (q = 1),
105 func sqrt(ix uint64) uint64 { func
133 // generate sqrt(x) bit by bit
135 var q, s uint64 // q = sqrt(x
    [all...]
sqrt_test.go 5 // A copy of Sqrt tests from the math package to test the
6 // purely integer arithmetic implementation in sqrt.go.
17 return math.Float64frombits(runtime.Sqrt(math.Float64bits(x)))
23 if f := SqrtRT(a); sqrt[i] != f {
24 t.Errorf("Sqrt(%g) = %g, want %g", a, f, sqrt[i])
29 t.Errorf("Sqrt(%g) = %g, want %g", vfsqrtSC[i], f, sqrtSC[i])
57 var sqrt = []float64{ var
  /prebuilts/go/linux-x86/src/runtime/
sqrt.go 5 // Copy of math/sqrt.go, here for use by ARM softfloat.
8 // while emulating the sqrt instruction.
27 // Return correctly rounded sqrt.
29 // | Use the hardware sqrt if you have one |
36 // sqrt(x) = 2**k * sqrt(y)
38 // Let q = sqrt(y) truncated to i bit after binary point (q = 1),
105 func sqrt(ix uint64) uint64 { func
133 // generate sqrt(x) bit by bit
135 var q, s uint64 // q = sqrt(x
    [all...]
sqrt_test.go 5 // A copy of Sqrt tests from the math package to test the
6 // purely integer arithmetic implementation in sqrt.go.
17 return math.Float64frombits(runtime.Sqrt(math.Float64bits(x)))
23 if f := SqrtRT(a); sqrt[i] != f {
24 t.Errorf("Sqrt(%g) = %g, want %g", a, f, sqrt[i])
29 t.Errorf("Sqrt(%g) = %g, want %g", vfsqrtSC[i], f, sqrtSC[i])
57 var sqrt = []float64{ var
  /external/guava/guava-tests/benchmark/com/google/common/math/
BigIntegerMathRoundingBenchmark.java 72 @Benchmark int sqrt(int reps) { method in class:BigIntegerMathRoundingBenchmark
76 tmp += BigIntegerMath.sqrt(positive[j], mode).intValue();
IntMathRoundingBenchmark.java 72 @Benchmark int sqrt(int reps) { method in class:IntMathRoundingBenchmark
76 tmp += IntMath.sqrt(positive[j], mode);
LongMathRoundingBenchmark.java 72 @Benchmark int sqrt(int reps) { method in class:LongMathRoundingBenchmark
76 tmp += LongMath.sqrt(positive[j], mode);
  /frameworks/base/core/java/android/util/
FloatMath.java 88 * @param value to compute sqrt of
92 public static float sqrt(float value) { method in class:FloatMath
93 return (float) Math.sqrt(value);
122 * Returns {@code sqrt(}<i>{@code x}</i><sup>{@code 2}</sup>{@code +} <i>
  /external/deqp/framework/common/
tcuInterval.cpp 133 Interval sqrt (const Interval& x) function in namespace:tcu
135 return applyMonotone(std::sqrt, x);
140 return 1.0 / sqrt(x);
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mlmath.h 50 #define sqrt(x) ml_sqrt(x) macro
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlmath.h 50 #define sqrt(x) ml_sqrt(x) macro

Completed in 2980 milliseconds

1 2 3 4 5 6 7 8 91011>>