HomeSort by relevance Sort by last modified time
    Searched refs:SQRT (Results 1 - 25 of 29) sorted by null

1 2

  /external/eigen/lapack/
dlapy2.f 33 *> DLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
87 INTRINSIC ABS, MAX, MIN, SQRT
98 DLAPY2 = W*SQRT( ONE+( Z / W )**2 )
dlapy3.f 33 *> DLAPY3 returns sqrt(x**2+y**2+z**2), taking care not to cause
90 INTRINSIC ABS, MAX, SQRT
104 DLAPY3 = W*SQRT( ( XABS / W )**2+( YABS / W )**2+
slapy2.f 33 *> SLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
87 INTRINSIC ABS, MAX, MIN, SQRT
98 SLAPY2 = W*SQRT( ONE+( Z / W )**2 )
slapy3.f 33 *> SLAPY3 returns sqrt(x**2+y**2+z**2), taking care not to cause
90 INTRINSIC ABS, MAX, SQRT
104 SLAPY3 = W*SQRT( ( XABS / W )**2+( YABS / W )**2+
  /external/eigen/blas/fortran/
srotmg.f 13 * THE SECOND COMPONENT OF THE 2-VECTOR (SQRT(SD1)*SX1,SQRT(SD2)*
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java 95 /** The {@code FastMath.sqrt} method wrapped as a {@link ComposableFunction}. */
96 public static final ComposableFunction SQRT = new ComposableFunction() {
100 return FastMath.sqrt(d);
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
rtl.def 611 DEF_RTL_EXPR(SQRT, "sqrt", "e", RTX_UNARY)
    [all...]
genrtl.h 1081 gen_rtx_fmt_e (SQRT, (MODE), (ARG0))
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 206 return FastMath.sqrt(d);
218 return FastMath.sqrt(sum);
664 return mapToSelf(ComposableFunction.SQRT);
  /external/cblas/testing/
c_cblat2.f     [all...]
c_cblat3.f     [all...]
c_dblat2.f     [all...]
c_dblat3.f     [all...]
c_sblat2.f     [all...]
c_sblat3.f     [all...]
c_zblat2.f     [all...]
c_zblat3.f     [all...]
  /external/eigen/blas/testing/
cblat2.f     [all...]
dblat2.f     [all...]
dblat3.f     [all...]
sblat2.f     [all...]
sblat3.f     [all...]
zblat2.f     [all...]
  /prebuilts/go/darwin-x86/src/math/
all_test.go 557 var sqrt = []float64{ var
    [all...]

Completed in 1702 milliseconds

1 2