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

1 2 3 4

  /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)
  /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
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowFloatMath.java 47 protected static float sqrt(float value) { method in class:ShadowFloatMath
48 return (float) Math.sqrt(value);
  /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);
  /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);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
PoissonDistributionImpl.java 178 normal.setStandardDeviation(FastMath.sqrt(p));
197 FastMath.sqrt(MathUtils.TWO_PI * x);
224 * approximation. The <code>N(mean, sqrt(mean))</code> distribution is used
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
CorrelatedRandomVectorGenerator.java 247 double sqrt = FastMath.sqrt(c[ir][ir]); local
248 b[rank][rank] = sqrt;
249 double inverse = 1 / sqrt;
  /external/clang/lib/Headers/
__clang_cuda_cmath.h 142 __DEVICE__ float sqrt(float __x) { return ::sqrtf(__x); } function
  /external/skqp/src/effects/
SkHighContrastFilter.cpp 118 auto sqrt = alloc->make<skcms_TransferFunction>(); local
119 sqrt->g = 0.5f; sqrt->a = 1.0f;
120 sqrt->b = sqrt->c = sqrt->d = sqrt->e = sqrt->f = 0;
122 p->append(SkRasterPipeline::parametric, sqrt);
344 fragBuilder->codeAppend("color.rgb = sqrt(color.rgb);")
    [all...]
  /external/guava/guava-tests/test/com/google/common/math/
IntMathTest.java 51 BigIntegerMath.sqrt(BigInteger.ZERO.setBit(2 * Integer.SIZE - 1), FLOOR).intValue(),
76 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR).longValue());
94 @GwtIncompatible("sqrt")
96 assertEquals(IntMath.sqrt(Integer.MAX_VALUE, FLOOR), IntMath.FLOOR_SQRT_MAX_INT);
220 // Simple test to cover sqrt(0) for all types and all modes.
221 @GwtIncompatible("sqrt")
224 assertEquals(0, IntMath.sqrt(0, mode));
228 @GwtIncompatible("sqrt")
233 IntMath.sqrt(x, mode);
240 /* Relies on the correctness of BigIntegerMath.sqrt for all modes except UNNECESSARY. *
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1FieldElement.java 126 * return a sqrt root - the routine verifies that the calculation returns the right value - if
129 public ECFieldElement sqrt() method in class:SecP192K1FieldElement
SecP192R1FieldElement.java 127 * return a sqrt root - the routine verifies that the calculation returns the right value - if
130 public ECFieldElement sqrt() method in class:SecP192R1FieldElement
SecP224K1FieldElement.java 131 * return a sqrt root - the routine verifies that the calculation returns the right value - if
134 public ECFieldElement sqrt() method in class:SecP224K1FieldElement
SecP256K1FieldElement.java 127 * return a sqrt root - the routine verifies that the calculation returns the right value - if
130 public ECFieldElement sqrt() method in class:SecP256K1FieldElement
SecP256R1FieldElement.java 126 * return a sqrt root - the routine verifies that the calculation returns the right value - if
129 public ECFieldElement sqrt() method in class:SecP256R1FieldElement
SecP384R1FieldElement.java 126 * return a sqrt root - the routine verifies that the calculation returns the right value - if
129 public ECFieldElement sqrt() method in class:SecP384R1FieldElement
SecP521R1FieldElement.java 127 * return a sqrt root - the routine verifies that the calculation returns the right value - if
130 public ECFieldElement sqrt() method in class:SecP521R1FieldElement
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/custom/sec/
SecP192K1FieldElement.java 130 * return a sqrt root - the routine verifies that the calculation returns the right value - if
133 public ECFieldElement sqrt() method in class:SecP192K1FieldElement
SecP192R1FieldElement.java 131 * return a sqrt root - the routine verifies that the calculation returns the right value - if
134 public ECFieldElement sqrt() method in class:SecP192R1FieldElement

Completed in 1130 milliseconds

1 2 3 4