Searched refs:scale1 (Results 1 – 6 of 6) sorted by relevance
/third_party/musl/src/complex/ |
D | __cexpf.c | 53 float x, y, exp_x, scale1, scale2; in __ldexp_cexpf() local 62 SET_FLOAT_WORD(scale1, (0x7f + half_expt) << 23); in __ldexp_cexpf() 66 return CMPLXF(cosf(y) * exp_x * scale1 * scale2, in __ldexp_cexpf() 67 sinf(y) * exp_x * scale1 * scale2); in __ldexp_cexpf()
|
D | __cexp.c | 69 double x, y, exp_x, scale1, scale2; in __ldexp_cexp() local 82 INSERT_WORDS(scale1, (0x3ff + half_expt) << 20, 0); in __ldexp_cexp() 86 return CMPLX(cos(y) * exp_x * scale1 * scale2, sin(y) * exp_x * scale1 * scale2); in __ldexp_cexp()
|
/third_party/FreeBSD/lib/msun/ld128/ |
D | k_expl.h | 302 long double x, y, scale1, scale2; in __ldexp_cexpl() local 312 scale1 = 1; in __ldexp_cexpl() 314 SET_LDBL_EXPSIGN(scale1, BIAS + half_expt); in __ldexp_cexpl() 319 return (CMPLXL(c * exp_x * scale1 * scale2, in __ldexp_cexpl() 320 s * exp_x * scale1 * scale2)); in __ldexp_cexpl()
|
/third_party/ffmpeg/libavcodec/ |
D | mpegaudiodec_template.c | 596 int mant, scale0, scale1; in mp_decode_layer2() local 598 scale1 = scale_factors[1][i][k]; in mp_decode_layer2() 610 l2_unscale_group(steps, mant, scale1); in mp_decode_layer2() 616 l2_unscale_group(steps, mant, scale1); in mp_decode_layer2() 620 l2_unscale_group(steps, v, scale1); in mp_decode_layer2() 627 l1_unscale(bits - 1, mant, scale1); in mp_decode_layer2()
|
D | ilbcdec.c | 972 int16_t scale1, scale2; in do_plc() local 1065 scale1 = norm_w32(tmp2W32) - 16; in do_plc() 1066 tmp1 = SPL_SHIFT_W32(tmp2W32, scale1); in do_plc() 1075 totscale = scale1 + scale2 - 1; in do_plc()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_lens_correction.cpp | 2279 const real32 scale1 = 1.0f * (1 << fTableOutputBits); in Prepare() local 2286 real32 y = table32.Interpolate (x) * scale1; in Prepare()
|