Home
last modified time | relevance | path

Searched refs:scale1 (Results 1 – 6 of 6) sorted by relevance

/third_party/musl/src/complex/
D__cexp.c69 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()
D__cexpf.c53 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()
/third_party/FreeBSD/lib/msun/ld128/
Dk_expl.h304 long double x, y, scale1, scale2; in __ldexp_cexpl() local
314 scale1 = 1; in __ldexp_cexpl()
316 SET_LDBL_EXPSIGN(scale1, BIAS + half_expt); in __ldexp_cexpl()
321 return (CMPLXL(c * exp_x * scale1 * scale2, in __ldexp_cexpl()
322 s * exp_x * scale1 * scale2)); in __ldexp_cexpl()
/third_party/ffmpeg/libavcodec/
Dmpegaudiodec_template.c594 int mant, scale0, scale1; in mp_decode_layer2() local
596 scale1 = scale_factors[1][i][k]; in mp_decode_layer2()
608 l2_unscale_group(steps, mant, scale1); in mp_decode_layer2()
614 l2_unscale_group(steps, mant, scale1); in mp_decode_layer2()
618 l2_unscale_group(steps, v, scale1); in mp_decode_layer2()
625 l1_unscale(bits - 1, mant, scale1); in mp_decode_layer2()
Dilbcdec.c970 int16_t scale1, scale2; in do_plc() local
1063 scale1 = norm_w32(tmp2W32) - 16; in do_plc()
1064 tmp1 = SPL_SHIFT_W32(tmp2W32, scale1); in do_plc()
1073 totscale = scale1 + scale2 - 1; in do_plc()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_lens_correction.cpp2279 const real32 scale1 = 1.0f * (1 << fTableOutputBits); in Prepare() local
2286 real32 y = table32.Interpolate (x) * scale1; in Prepare()