HomeSort by relevance Sort by last modified time
    Searched refs:M_LN2 (Results 1 - 15 of 15) sorted by null

  /external/flac/libFLAC/
fixed_intrin_ssse3.c 139 residual_bits_per_sample[0] = (float)((total_error_0 > 0) ? log(M_LN2 * (double)total_error_0 / (double)data_len) / M_LN2 : 0.0);
140 residual_bits_per_sample[1] = (float)((total_error_1 > 0) ? log(M_LN2 * (double)total_error_1 / (double)data_len) / M_LN2 : 0.0);
141 residual_bits_per_sample[2] = (float)((total_error_2 > 0) ? log(M_LN2 * (double)total_error_2 / (double)data_len) / M_LN2 : 0.0);
142 residual_bits_per_sample[3] = (float)((total_error_3 > 0) ? log(M_LN2 * (double)total_error_3 / (double)data_len) / M_LN2 : 0.0);
143 residual_bits_per_sample[4] = (float)((total_error_4 > 0) ? log(M_LN2 * (double)total_error_4 / (double)data_len) / M_LN2 : 0.0)
    [all...]
fixed_intrin_sse2.c 145 residual_bits_per_sample[0] = (float)((total_error_0 > 0) ? log(M_LN2 * (double)total_error_0 / (double)data_len) / M_LN2 : 0.0);
146 residual_bits_per_sample[1] = (float)((total_error_1 > 0) ? log(M_LN2 * (double)total_error_1 / (double)data_len) / M_LN2 : 0.0);
147 residual_bits_per_sample[2] = (float)((total_error_2 > 0) ? log(M_LN2 * (double)total_error_2 / (double)data_len) / M_LN2 : 0.0);
148 residual_bits_per_sample[3] = (float)((total_error_3 > 0) ? log(M_LN2 * (double)total_error_3 / (double)data_len) / M_LN2 : 0.0);
149 residual_bits_per_sample[4] = (float)((total_error_4 > 0) ? log(M_LN2 * (double)total_error_4 / (double)data_len) / M_LN2 : 0.0)
    [all...]
fixed.c 258 residual_bits_per_sample[0] = (float)((total_error_0 > 0) ? log(M_LN2 * (double)total_error_0 / (double)data_len) / M_LN2 : 0.0);
259 residual_bits_per_sample[1] = (float)((total_error_1 > 0) ? log(M_LN2 * (double)total_error_1 / (double)data_len) / M_LN2 : 0.0);
260 residual_bits_per_sample[2] = (float)((total_error_2 > 0) ? log(M_LN2 * (double)total_error_2 / (double)data_len) / M_LN2 : 0.0);
261 residual_bits_per_sample[3] = (float)((total_error_3 > 0) ? log(M_LN2 * (double)total_error_3 / (double)data_len) / M_LN2 : 0.0);
262 residual_bits_per_sample[4] = (float)((total_error_4 > 0) ? log(M_LN2 * (double)total_error_4 / (double)data_len) / M_LN2 : 0.0)
    [all...]
lpc.c     [all...]
  /external/flac/include/share/
compat.h 186 #ifndef M_LN2
187 #define M_LN2 0.69314718055994530942
  /device/linaro/bootloader/edk2/StdLib/Include/
math.h 429 #define M_LN2 0.69314718055994530942 /**< log e2 */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cmathmodule.c 15 #ifndef M_LN2
16 #define M_LN2 (0.6931471805599453094) /* natural log of 2 */
140 M_LN2*2., z.imag);
143 M_LN2*2., -z.imag);
176 r.real = log(hypot(z.real/2., z.imag/2.)) + M_LN2*2.;
229 M_LN2*2., z.real);
232 M_LN2*2., -z.real);
537 r.real = log(hypot(ax/2., ay/2.)) + M_LN2;
542 ldexp(ay, DBL_MANT_DIG))) - DBL_MANT_DIG*M_LN2;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cmathmodule.c 15 #ifndef M_LN2
16 #define M_LN2 (0.6931471805599453094) /* natural log of 2 */
140 M_LN2*2., z.imag);
143 M_LN2*2., -z.imag);
176 r.real = log(hypot(z.real/2., z.imag/2.)) + M_LN2*2.;
229 M_LN2*2., z.real);
232 M_LN2*2., -z.real);
537 r.real = log(hypot(ax/2., ay/2.)) + M_LN2;
542 ldexp(ay, DBL_MANT_DIG))) - DBL_MANT_DIG*M_LN2;
    [all...]
  /external/python/cpython2/Modules/
cmathmodule.c 15 #ifndef M_LN2
16 #define M_LN2 (0.6931471805599453094) /* natural log of 2 */
140 M_LN2*2., z.imag);
143 M_LN2*2., -z.imag);
176 r.real = log(hypot(z.real/2., z.imag/2.)) + M_LN2*2.;
229 M_LN2*2., z.real);
232 M_LN2*2., -z.real);
537 r.real = log(hypot(ax/2., ay/2.)) + M_LN2;
542 ldexp(ay, DBL_MANT_DIG))) - DBL_MANT_DIG*M_LN2;
    [all...]
  /external/python/cpython3/Modules/
cmathmodule.c 49 #ifndef M_LN2
50 #define M_LN2 (0.6931471805599453094) /* natural log of 2 */
232 M_LN2*2., z.imag);
235 M_LN2*2., -z.imag);
270 r.real = log(hypot(z.real/2., z.imag/2.)) + M_LN2*2.;
326 M_LN2*2., z.real);
329 M_LN2*2., -z.real);
638 r.real = log(hypot(ax/2., ay/2.)) + M_LN2;
643 ldexp(ay, DBL_MANT_DIG))) - DBL_MANT_DIG*M_LN2;
    [all...]
  /external/pdfium/third_party/libtiff/
tif_luv.c 734 #ifndef M_LN2
735 #define M_LN2 0.69314718055994530942
741 #define log2(x) ((1./M_LN2)*log(x))
743 #define exp2(x) exp(M_LN2*(x))
760 Y = exp(M_LN2/256.*(Le+.5) - M_LN2*64.);
839 return (exp(M_LN2/64.*(p10+.5) - M_LN2*12.));
    [all...]
  /bionic/tests/headers/posix/
math_h.c 77 MACRO(M_LN2);
  /bionic/libc/include/
math.h 342 #define M_LN2 0.69314718055994530942 /* log e2 */
  /external/gptfdisk/
gpt.cc 36 #define log2(x) (log(x) / M_LN2)
    [all...]
  /external/clang/lib/Headers/
opencl-c.h 219 #define M_LN2 0x1.62e42fefa39efp-1
    [all...]

Completed in 1025 milliseconds