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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
nomathbuiltin.c 6 double pow(double, double);
9 return pow(a, b);
10 // CHECK: call {{.*}}double @pow
le32-libcall-pow.c 4 // le32 (PNaCl) never generates intrinsics for pow calls, with or without
9 double pow(double, double);
17 // CHECK: call double @pow
18 double l1 = pow(a1, a1);
25 // CHECK: declare double @pow(double, double)
  /external/eigen/doc/snippets/
Cwise_pow.cpp 2 cout << v.pow(0.333333) << endl;
Cwise_scalar_power_array.cpp 2 cout << "10^[" << e << "] = " << pow(10,e) << endl;
Cwise_array_power_array.cpp 3 cout << "[" << x << "]^[" << e << "] = " << x.pow(e) << endl; // using ArrayBase::pow
4 cout << "[" << x << "]^[" << e << "] = " << pow(x,e) << endl; // using Eigen::pow
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pow.py 8 self.assertEqual(pow(type(i), 0), 1)
9 self.assertEqual(pow(type(i), 1), type(i))
10 self.assertEqual(pow(type(0), 1), type(0))
11 self.assertEqual(pow(type(1), 1), type(1))
14 self.assertEqual(pow(type(i), 3), i*i*i)
18 self.assertEqual(pow(2, i), pow2)
26 pow(ii, jj)
34 self.assertRaises(ZeroDivisionError, pow, zero, exp)
52 self.assertRaises(TypeError, pow, type(i), j, k)
55 pow(type(i),j,k),
    [all...]
  /external/python/cpython2/Lib/test/
test_pow.py 8 self.assertEqual(pow(type(i), 0), 1)
9 self.assertEqual(pow(type(i), 1), type(i))
10 self.assertEqual(pow(type(0), 1), type(0))
11 self.assertEqual(pow(type(1), 1), type(1))
14 self.assertEqual(pow(type(i), 3), i*i*i)
18 self.assertEqual(pow(2, i), pow2)
26 pow(ii, jj)
34 self.assertRaises(ZeroDivisionError, pow, zero, exp)
52 self.assertRaises(TypeError, pow, type(i), j, k)
55 pow(type(i),j,k)
    [all...]
  /external/python/cpython3/Lib/test/
test_pow.py 8 self.assertEqual(pow(type(i), 0), 1)
9 self.assertEqual(pow(type(i), 1), type(i))
10 self.assertEqual(pow(type(0), 1), type(0))
11 self.assertEqual(pow(type(1), 1), type(1))
14 self.assertEqual(pow(type(i), 3), i*i*i)
18 self.assertEqual(pow(2, i), pow2)
26 pow(ii, jj)
34 self.assertRaises(ZeroDivisionError, pow, zero, exp)
52 self.assertRaises(TypeError, pow, type(i), j, k)
55 pow(type(i),j,k)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
cwise_op_gpu_pow.cu.cc 22 DEFINE_BINARY4(pow, Eigen::half, float, double, int64);
cwise_op_pow.cc 19 REGISTER5(BinaryOp, CPU, "Pow", functor::pow, float, Eigen::half, double,
21 REGISTER2(BinaryOp, CPU, "Pow", functor::safe_pow, int32, int64);
24 REGISTER4(BinaryOp, GPU, "Pow", functor::pow, float, Eigen::half, double,
28 REGISTER2(BinaryOp, SYCL, "Pow", functor::pow, float, double);
  /external/adhd/cras/src/dsp/
drc_math.c 13 db_to_linear[i + 100] = pow(10, i/20.0);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
BasicGCMExponentiator.java 15 public void exponentiateX(long pow, byte[] output)
20 if (pow > 0)
25 if ((pow & 1L) != 0)
30 pow >>>= 1;
32 while (pow > 0);
GCMExponentiator.java 6 void exponentiateX(long pow, byte[] output);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/gcm/
BasicGCMExponentiator.java 19 public void exponentiateX(long pow, byte[] output)
24 if (pow > 0)
29 if ((pow & 1L) != 0)
34 pow >>>= 1;
36 while (pow > 0);
GCMExponentiator.java 10 void exponentiateX(long pow, byte[] output);
  /external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-cov/Inputs/multithreaded_report/
pow.h 2 T pow(T b, T p) { function
bytes.cc 3 #include "pow.h"
11 totalInt += abs(pow(i, static_cast<uint8_t>(a)));
12 totalFloat += pow(static_cast<decltype(a)>(i), a);
words.cc 3 #include "pow.h"
11 totalInt += abs(pow(i, static_cast<uint16_t>(a)));
12 totalFloat += pow(static_cast<decltype(a)>(i), a);
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/equations/
Expo.java 14 return (t==0) ? 0 : (float) Math.pow(2, 10 * (t - 1));
26 return (t==1) ? 1 : -(float) Math.pow(2, -10 * t) + 1;
40 if ((t*=2) < 1) return 0.5f * (float) Math.pow(2, 10 * (t - 1));
41 return 0.5f * (-(float)Math.pow(2, -10 * --t) + 2);
  /external/arm-optimized-routines/math/include/
mathlib.h 24 double pow (double, double);
  /external/libpng/contrib/tools/
sRGB.h 26 l = 1.055 * pow(l, 1/2.4) - 0.055;
38 return pow((s+0.055)/1.055, 2.4);
  /cts/tests/tests/location/src/android/location/cts/psedorange/
Ecef2LlaConverter.java 36 Math.sqrt(Math.pow(EARTH_SEMI_MAJOR_AXIS_METERS, 2) * (1 - Math.pow(ECCENTRICITY, 2)));
38 (Math.pow(EARTH_SEMI_MAJOR_AXIS_METERS, 2) - Math.pow(SEMI_MINOR_AXIS_METERS, 2))
39 / Math.pow(SEMI_MINOR_AXIS_METERS, 2));
55 double pMeters = Math.sqrt(Math.pow(ecefXMeters, 2) + Math.pow(ecefYMeters, 2));
66 + Math.pow(SECOND_ECCENTRICITY, 2) * SEMI_MINOR_AXIS_METERS * Math.pow(sinTheta, 3);
68 - Math.pow(ECCENTRICITY, 2) * EARTH_SEMI_MAJOR_AXIS_METERS * (Math.pow(cosTheta, 3))
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestPow.rs 26 return pow(inBase, inExponent);
31 return pow(inBase, inExponent);
36 return pow(inBase, inExponent);
41 return pow(inBase, inExponent);
46 return pow(inBase, inExponent);
51 return pow(inBase, inExponent);
56 return pow(inBase, inExponent);
61 return pow(inBase, inExponent);
  /cts/tests/tests/text/src/android/text/format/cts/
FormatterTest.java 62 assertEquals("1.00 kB", Formatter.formatFileSize(context, bd.pow(1).longValue()));
63 assertEquals("1.50 kB", Formatter.formatFileSize(context, bd.pow(1).longValue() * 3 / 2));
64 assertEquals("12.50 kB", Formatter.formatFileSize(context, bd.pow(1).longValue() * 25 / 2));
66 assertEquals("1.00 MB", Formatter.formatFileSize(context, bd.pow(2).longValue()));
68 assertEquals("1.00 GB", Formatter.formatFileSize(context, bd.pow(3).longValue()));
70 assertEquals("1.00 TB", Formatter.formatFileSize(context, bd.pow(4).longValue()));
72 assertEquals("1.00 PB", Formatter.formatFileSize(context, bd.pow(5).longValue()));
74 assertEquals("1000 PB", Formatter.formatFileSize(context, bd.pow(6).longValue()));
102 assertEquals("1.0 kB", Formatter.formatShortFileSize(context, bd.pow(1).longValue()));
104 bd.pow(1).longValue() * 3 / 2))
    [all...]
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/synth/
SynthUnit.java 31 return CONCERT_A_FREQUENCY * Math.pow(2.0, semitones / 12.0);

Completed in 742 milliseconds

1 2 3 4 5 6 7 8 91011>>