HomeSort by relevance Sort by last modified time
    Searched refs:log10 (Results 26 - 50 of 392) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cmath 61 using ::log10;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cmath 61 using ::log10;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cmath 61 using ::log10;
  /external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
log10_valarray.pass.cpp 16 // log10(const valarray<T>& x);
46 std::valarray<T> v3 = log10(v1);
  /external/libvpx/libvpx/test/
util.h 42 psnr = 10 * log10(255.0 * 255.0 / mse);
  /external/openfst/src/include/fst/extensions/far/
info.h 106 if (ceil(log10(info.nstate)) + 2 > wnstate)
107 wnstate = ceil(log10(info.nstate)) + 2;
108 if (ceil(log10(info.narc)) + 2 > wnarc)
109 wnarc = ceil(log10(info.narc)) + 2;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
util.h 42 psnr = 10 * log10(255.0 * 255.0 / mse);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
log10_valarray.pass.cpp 16 // log10(const valarray<T>& x);
46 std::valarray<T> v3 = log10(v1);
  /external/guava/guava-tests/benchmark/com/google/common/math/
BigIntegerMathRoundingBenchmark.java 63 @Benchmark int log10(int reps) { method in class:BigIntegerMathRoundingBenchmark
67 tmp += BigIntegerMath.log10(positive[j], mode);
IntMathRoundingBenchmark.java 63 @Benchmark int log10(int reps) { method in class:IntMathRoundingBenchmark
67 tmp += IntMath.log10(positive[j], mode);
LongMathRoundingBenchmark.java 63 @Benchmark int log10(int reps) { method in class:LongMathRoundingBenchmark
67 tmp += LongMath.log10(positive[j], mode);
  /bionic/libm/x86/
e_log10.S 39 // LH is a short approximation for log10(e)
43 // Result: k*log10(2) - log(B) + p(r)
49 // log10(0) = -INF with divide-by-zero exception raised
50 // log10(1) = +0
51 // log10(x) = NaN with invalid exception raised if x < -0, including -INF
52 // log10(+INF) = +INF
72 # -- Begin log10
73 ENTRY(log10) function
241 END(log10)
242 # -- End log10
    [all...]
  /external/guava/guava-tests/test/com/google/common/math/
BigIntegerMathTest.java 158 BigIntegerMath.log10(ZERO, mode);
168 BigIntegerMath.log10(BigInteger.valueOf(-1), mode);
178 int result = BigIntegerMath.log10(x, mode);
189 int result = BigIntegerMath.log10(x, mode);
196 // Relies on the correctness of log10(BigInteger, FLOOR).
200 int logFloor = BigIntegerMath.log10(x, FLOOR);
203 assertEquals(logFloor, BigIntegerMath.log10(x, UNNECESSARY));
214 int result = BigIntegerMath.log10(x, HALF_UP);
226 int result = BigIntegerMath.log10(x, HALF_DOWN);
235 // Relies on the correctness of log10(BigInteger, {HALF_UP,HALF_DOWN})
    [all...]
IntMathTest.java 66 BigIntegerMath.log10(BigInteger.ONE.shiftLeft(Integer.SIZE - i), FLOOR),
164 @GwtIncompatible("log10")
168 IntMath.log10(0, mode);
174 @GwtIncompatible("log10")
179 IntMath.log10(x, mode);
186 // Relies on the correctness of BigIntegerMath.log10 for all modes except UNNECESSARY.
192 assertEquals(BigIntegerMath.log10(valueOf(x), mode), IntMath.log10(x, mode));
197 // Relies on the correctness of log10(int, FLOOR) and of pow(int, int).
201 int floor = IntMath.log10(x, FLOOR)
    [all...]
LongMathTest.java 60 BigIntegerMath.log10(BigInteger.ONE.shiftLeft(Long.SIZE - i), FLOOR),
222 LongMath.log10(0L, mode);
233 LongMath.log10(x, mode);
240 // Relies on the correctness of BigIntegerMath.log10 for all modes except UNNECESSARY.
245 assertEquals(BigIntegerMath.log10(valueOf(x), mode), LongMath.log10(x, mode));
250 // Relies on the correctness of log10(long, FLOOR) and of pow(long, int).
254 int floor = LongMath.log10(x, FLOOR);
257 assertEquals(floor, LongMath.log10(x, UNNECESSARY));
269 assertEquals(12, LongMath.log10(x, mode))
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 55 tmp = log10(darray);
81 tmp = log10(farray);
108 tmp = log10(ldarray);
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 55 tmp = log10(darray);
81 tmp = log10(farray);
108 tmp = log10(ldarray);
  /external/opencv/cv/src/
cvmatchcontours.cpp 129 ama = 1. / (sma * log10( ama ));
130 amb = 1. / (smb * log10( amb ));
159 ama = sma * log10( ama );
160 amb = smb * log10( amb );
189 ama = sma * log10( ama );
190 amb = smb * log10( amb );
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
lpc_analysis.c 141 chng = 0.25 * (fabs(10.0 * log10(nrg[3] / nrg[2])) +
142 fabs(10.0 * log10(nrg[2] / nrg[1])) +
143 fabs(10.0 * log10(nrg[1] / nrg[0])) +
144 fabs(10.0 * log10(nrg[0] / *oldEnergy)));
193 chng = 0.25 * (fabs(10.0 * log10(nrg[3] / nrg[2])) +
194 fabs(10.0 * log10(nrg[2] / nrg[1])) +
195 fabs(10.0 * log10(nrg[1] / nrg[0])) +
196 fabs(10.0 * log10(nrg[0] / *oldEnergy)));
  /bionic/libm/x86_64/
e_log10.S 39 // LH is a short approximation for log10(e)
43 // Result: k*log10(2) - log(B) + p(r)
49 // log10(0) = -INF with divide-by-zero exception raised
50 // log10(1) = +0
51 // log10(x) = NaN with invalid exception raised if x < -0, including -INF
52 // log10(+INF) = +INF
57 # -- Begin log10
58 ENTRY(log10) function
222 END(log10)
223 # -- End log10
    [all...]
  /frameworks/av/services/audiopolicy/common/include/
Volume.h 156 return 20 * log10(amplification);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 286 assertTrue(Double.isNaN(Math.log10(Double.NaN)));
287 assertTrue(Double.isNaN(Math.log10(-2541.05745687234187532)));
288 assertTrue(Double.isNaN(Math.log10(-0.1)));
289 assertEquals(Double.POSITIVE_INFINITY, Math.log10(Double.POSITIVE_INFINITY));
290 assertEquals(Double.NEGATIVE_INFINITY, Math.log10(0.0));
291 assertEquals(Double.NEGATIVE_INFINITY, Math.log10(+0.0));
292 assertEquals(Double.NEGATIVE_INFINITY, Math.log10(-0.0));
294 assertEquals(3.0, Math.log10(1000.0));
295 assertEquals(14.0, Math.log10(Math.pow(10, 14)));
296 assertEquals(3.7389561269540406, Math.log10(5482.2158))
    [all...]
  /external/fio/
tickmarks.c 22 exp = floor(log10(x));
105 nfrac = MAX(-floor(log10(d)), 0);
  /external/libopus/celt/tests/
test_unit_mdct.c 76 snr = 10*log10(sigpow/errpow);
106 snr = 10*log10(sigpow/errpow);
  /libcore/luni/src/main/native/
java_lang_Math.cpp 95 return log10(a);
137 NATIVE_METHOD(Math, log10, "!(D)D"),

Completed in 310 milliseconds

12 3 4 5 6 7 8 91011>>