HomeSort by relevance Sort by last modified time
    Searched defs:pow (Results 51 - 75 of 292) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DiagBigDecimalTest.java 2207 .pow(new com.ibm.icu.math.BigDecimal("-71")); method
2279 .pow( method
    [all...]
  /external/mesa3d/src/mesa/program/
prog_to_nir.c 385 nir_ssa_def *pow = nir_fpow(b, nir_fmax(b, src0_y, nir_imm_float(b, 0.0)), local
393 pow);
398 pow);
  /external/pdfium/core/fxcrt/
cfx_decimal.cpp 359 double pow = (double)(1 << 16) * (1 << 16); local
360 double base = static_cast<double>(m_uHi) * pow * pow +
361 static_cast<double>(m_uMid) * pow + static_cast<double>(m_uLo);
364 return (bNeg ? -1 : 1) * base * ::pow(10.0, -scale);
  /external/swiftshader/src/Shader/
VertexPipeline.cpp 334 Float4 pow; local
336 pow = *Pointer<Float>(data + OFFSET(DrawData,ff.materialShininess));
350 Float4 P = power(dot, pow);
  /libcore/benchmarks/src/benchmarks/regression/
StrictMathBenchmark.java 281 StrictMath.pow(d, d);
  /libcore/ojluni/src/main/java/java/lang/
Math.java 629 public static native double pow(double a, double b); method in class:Math
658 // a is a finite number such that pow(2,-32) <= ulp(a) < 1
707 // a is a finite number such that pow(2,-64) <= ulp(a) < 1
    [all...]
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 130 #define pow(z1,z2) __TGMATH_CPLX_2(z1, z2, pow, cpow) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 130 #define pow(z1,z2) __TGMATH_CPLX_2(z1, z2, pow, cpow) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h 328 #define pow(Val1, Val2) __TGMATH_BINARY_REAL_IMAG (Val1, Val2, pow, cpow) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 119 #define pow(z1,z2) __TGMATH_CPLX_2(z1, z2, pow, cpow) macro
  /external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
BigFraction.java 940 public BigFraction pow(final int exponent) { method in class:BigFraction
942 return new BigFraction(denominator.pow(-exponent), numerator.pow(-exponent));
944 return new BigFraction(numerator.pow(exponent), denominator.pow(exponent));
957 public BigFraction pow(final long exponent) { method in class:BigFraction
959 return new BigFraction(MathUtils.pow(denominator, -exponent),
960 MathUtils.pow(numerator, -exponent));
962 return new BigFraction(MathUtils.pow(numerator, exponent),
963 MathUtils.pow(denominator, exponent))
976 public BigFraction pow(final BigInteger exponent) { method in class:BigFraction
996 public double pow(final double exponent) { method in class:BigFraction
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
GraggBulirschStoerIntegrator.java 718 double fac = stepControl2 / FastMath.pow(error / stepControl1, exp);
719 final double pow = FastMath.pow(stepControl3, exp); local
720 fac = FastMath.max(pow / stepControl4, FastMath.min(1 / pow, fac));
827 double factor = FastMath.pow(0.5 * sequence[l2], l);
833 factor = FastMath.pow(0.5 * sequence[j + l2], l);
865 hInt = FastMath.abs(stepSize / FastMath.max(FastMath.pow(interpError, 1.0 / (mu+4)),
    [all...]
  /external/eigen/Eigen/src/Core/
MathFunctions.h 523 * Implementation of pow *
533 EIGEN_USING_STD_MATH(pow);
534 return pow(x, y);
967 inline typename internal::pow_impl<ScalarX,ScalarY>::result_type pow(const ScalarX& x, const ScalarY& y) function in namespace:Eigen::numext
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 407 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half pow(const half& a, const half& b) { function in namespace:Eigen::half_impl
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorBase.h 214 pow(Scalar exponent) const { function in class:Eigen::TensorBase
    [all...]
  /external/fio/
parse.c 195 unsigned int i, pow = 0, mult = kb_base; local
215 pow = 5;
221 pow = 4;
227 pow = 3;
233 pow = 2;
239 pow = 1;
245 pow = 5;
247 pow = 4;
249 pow = 3;
251 pow = 2
    [all...]
  /external/python/cpython3/Lib/
operator.py 19 'mul', 'ne', 'neg', 'not_', 'or_', 'pos', 'pow', 'rshift',
124 def pow(a, b): function
441 __pow__ = pow
  /external/swiftshader/third_party/subzero/runtime/
wasm-runtime.cpp 275 double env$$pow(double x, double y) {
277 return trace(pow(x, y));
  /external/tensorflow/tensorflow/contrib/labeled_tensor/
__init__.py 83 pow = _core.pow_function # pylint: disable=redefined-builtin variable
  /external/tensorflow/tensorflow/python/ops/
math_ops.py 43 @@pow
547 @tf_export("pow")
548 def pow(x, y, name=None): # pylint: disable=redefined-builtin function
557 tf.pow(x, y) # [[256, 65536], [9, 27]]
570 with ops.name_scope(name, "Pow", [x]) as name:
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/display/
BrightnessMappingStrategyTest.java 368 minBrightness = (float) MathUtils.pow(minBrightness, MAXIMUM_GAMMA); // Gamma correction.
477 strategy.addUserDataPoint(x2, (float) MathUtils.pow(y2, gamma));
478 assertEquals(MathUtils.pow(y1, gamma), strategy.getBrightness(x1), 0.01f /* tolerance */);
479 assertEquals(MathUtils.pow(y2, gamma), strategy.getBrightness(x2), 0.01f /* tolerance */);
480 assertEquals(MathUtils.pow(y3, gamma), strategy.getBrightness(x3), 0.01f /* tolerance */);
506 strategy.addUserDataPoint(x2, (float) MathUtils.pow(y2, gamma));
507 assertEquals(MathUtils.pow(y1, minGamma), strategy.getBrightness(x1),
509 assertEquals(MathUtils.pow(y2, gamma), strategy.getBrightness(x2),
511 assertEquals(MathUtils.pow(y3, minGamma), strategy.getBrightness(x3),
552 float gamma = (float) MathUtils.pow(MAXIMUM_GAMMA, -adjustment)
    [all...]
  /art/compiler/optimizing/
induction_var_range.cc 60 int64_t pow = 1; local
63 pow = SafeMul(pow, b, overflow);
70 return pow;
    [all...]
  /external/clang/lib/Headers/
tgmath.h 469 // pow
477 __tg_pow(double __x, double __y) {return pow(__x, __y);}
496 #undef pow macro
497 #define pow(__x, __y) __tg_pow(__tg_promote2((__x), (__y))(__x), \ macro
  /external/guava/guava-tests/test/com/google/common/math/
LongMathTest.java 79 assertEquals(BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR),
83 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * LongMath.halfPowersOf10.length + 1), FLOOR);
250 // Relies on the correctness of log10(long, FLOOR) and of pow(long, int).
255 boolean expectSuccess = LongMath.pow(10, floor) == x;
317 assertEquals(LongMath.pow(i, exp), valueOf(i)
318 .pow(exp)
527 BigInteger expectedResult = valueOf(b).pow(exp);
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 49 Ambiguous pow(Ambiguous, Ambiguous){ return Ambiguous(); } function
418 static_assert((std::is_same<decltype(pow((float)0, (float)0)), float>::value), "");
419 static_assert((std::is_same<decltype(pow((bool)0, (float)0)), double>::value), "");
420 static_assert((std::is_same<decltype(pow((unsigned short)0, (double)0)), double>::value), "");
421 static_assert((std::is_same<decltype(pow((int)0, (long double)0)), long double>::value), "");
422 static_assert((std::is_same<decltype(pow((float)0, (unsigned int)0)), double>::value), "");
423 static_assert((std::is_same<decltype(pow((double)0, (long)0)), double>::value), "");
424 static_assert((std::is_same<decltype(pow((long double)0, (unsigned long)0)), long double>::value), "");
425 static_assert((std::is_same<decltype(pow((int)0, (long long)0)), double>::value), "");
426 static_assert((std::is_same<decltype(pow((int)0, (unsigned long long)0)), double>::value), "")
    [all...]

Completed in 1063 milliseconds

1 23 4 5 6 7 8 91011>>