/external/flac/src/libFLAC/ia32/ |
D | fixed_asm.nasm | 218 fldln2 ; ST = ln2 total_error_0/data_len 1.0 data_len 219 fmulp st1 ; ST = ln2*total_error_0/data_len 1.0 data_len 220 fyl2x ; ST = log2(ln2*total_error_0/data_len) data_len 221 fstp dword [ebx] ; residual_bits_per_sample[0] = log2(ln2*total_error_0/data_len) ST = data_len 234 fldln2 ; ST = ln2 total_error_1/data_len 1.0 data_len 235 fmulp st1 ; ST = ln2*total_error_1/data_len 1.0 data_len 236 fyl2x ; ST = log2(ln2*total_error_1/data_len) data_len 237 …fstp dword [ebx + 4] ; residual_bits_per_sample[1] = log2(ln2*total_error_1/data_len) ST = dat… 249 fldln2 ; ST = ln2 total_error_2/data_len 1.0 data_len 250 fmulp st1 ; ST = ln2*total_error_2/data_len 1.0 data_len [all …]
|
/external/arm-optimized-routines/math/tools/ |
D | log2_abs.sollya | 11 ln2 = evaluate(log(2),0); 12 invln2hi = double(1/ln2 + 0x1p21) - 0x1p21; // round away last 21 bits 13 invln2lo = double(1/ln2 - invln2hi); 16 f = log(1+x)/ln2; 37 //for i from 0 to 60 do { g = g + (-x)^i/(i+1)/ln2; };
|
D | log2.sollya | 11 ln2 = evaluate(log(2),0); 12 invln2hi = double(1/ln2 + 0x1p21) - 0x1p21; // round away last 21 bits 13 invln2lo = double(1/ln2 - invln2hi); 22 f = f/ln2;
|
/external/llvm-project/libc/AOR_v20.02/math/tools/ |
D | log2_abs.sollya | 12 ln2 = evaluate(log(2),0); 13 invln2hi = double(1/ln2 + 0x1p21) - 0x1p21; // round away last 21 bits 14 invln2lo = double(1/ln2 - invln2hi); 17 f = log(1+x)/ln2; 38 //for i from 0 to 60 do { g = g + (-x)^i/(i+1)/ln2; };
|
D | log2.sollya | 12 ln2 = evaluate(log(2),0); 13 invln2hi = double(1/ln2 + 0x1p21) - 0x1p21; // round away last 21 bits 14 invln2lo = double(1/ln2 - invln2hi); 23 f = f/ln2;
|
/external/python/cpython2/Modules/ |
D | _math.c | 22 static const double ln2 = 6.93147180559945286227E-01; variable 59 return log(x)+ln2; /* acosh(huge)=log(2x) */ in _Py_acosh() 100 w = log(absx)+ln2; in _Py_asinh()
|
/external/python/cpython3/Modules/ |
D | _math.c | 23 static const double ln2 = 6.93147180559945286227E-01; variable 68 return log(x) + ln2; /* acosh(huge)=log(2x) */ in _Py_acosh() 111 w = log(absx) + ln2; in _Py_asinh()
|
/external/fdlibm/ |
D | e_acosh.c | 37 ln2 = 6.93147180559945286227e-01; /* 0x3FE62E42, 0xFEFA39EF */ variable 55 return __ieee754_log(x)+ln2; /* acosh(huge)=ieee_log(2x) */
|
D | s_asinh.c | 33 ln2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */ variable 52 w = __ieee754_log(ieee_fabs(x))+ln2;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/ |
D | DfpField.java | 144 private final Dfp ln2; field in DfpField 217 ln2 = new Dfp(this, ln2String); in DfpField() 235 ln2 = null; in DfpField() 484 return ln2;
|
/external/llvm-project/libc/AOR_v20.02/math/ |
D | logf_data.c | 30 .ln2 = 0x1.62e42fefa39efp-1,
|
D | logf.c | 23 #define Ln2 __logf_data.ln2
|
D | math_config.h | 324 double ln2; member
|
/external/arm-optimized-routines/math/ |
D | logf_data.c | 29 .ln2 = 0x1.62e42fefa39efp-1,
|
D | logf.c | 22 #define Ln2 __logf_data.ln2
|
D | math_config.h | 341 double ln2; member
|
/external/llvm-project/libcxx/test/std/numerics/numbers/ |
D | illformed.verify.cpp | 21 int ln2{std::numbers::ln2_v<int>}; variable
|
D | value.pass.cpp | 46 assert(std::numbers::ln2 == 0x1.62e42fefa39efp-1); in tests()
|
D | specialize.pass.cpp | 50 assert(d6 == std::numbers::ln2); in tests()
|
D | defined.pass.cpp | 21 [[maybe_unused]] const double* dd6{&std::numbers::ln2}; in tests()
|
/external/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | func_exponential.inl | 91 //exp2, ln2 = 0.69314718055994530941723212145818f 106 // log2, ln2 = 0.69314718055994530941723212145818f
|
/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | fast_exponential.inl | 112 //fastExp2, ln2 = 0.69314718055994530941723212145818f 125 // fastLog2, ln2 = 0.69314718055994530941723212145818f
|
/external/llvm-project/libcxx/include/ |
D | numbers | 51 inline constexpr double ln2 = ln2_v<double>; 125 inline constexpr double ln2 = ln2_v<double>;
|
/external/javassist/src/test/javassist/ |
D | JvstTest2.java | 26 int ln2 = m1.insertAt(line, "counter++;"); in testInsertAt() local 27 assertEquals(ln, ln2); in testInsertAt() 28 assertEquals(7, ln2); in testInsertAt() 32 ln2 = m1.insertAt(line, "counter++;"); in testInsertAt() 33 assertEquals(ln, ln2); in testInsertAt() 34 assertEquals(8, ln2); in testInsertAt()
|
/external/iw/ |
D | scan.c | 1013 int ln2 = 0; in print_11u_rcon() local 1017 ln2 = len - 2 - ln0 - ln1; in print_11u_rcon() 1045 if (ln2 > 0) { in print_11u_rcon() 1047 if (2 + ln0 + ln1 + ln2 > len) { in print_11u_rcon() 1050 for (idx = 0; idx < ln2; idx++) { in print_11u_rcon()
|