Searched refs:fpart (Results 1 – 7 of 7) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | dovi_rpu.c | 150 union { uint32_t u32; float f32; } fpart; in get_ue_coef() local 155 fpart.u32 = get_bits_long(gb, hdr->coef_log2_denom); in get_ue_coef() 156 return (ipart << hdr->coef_log2_denom) + fpart.u32; in get_ue_coef() 159 fpart.u32 = get_bits_long(gb, 32); in get_ue_coef() 160 return fpart.f32 * (1LL << hdr->coef_log2_denom); in get_ue_coef() 169 union { uint32_t u32; float f32; } fpart; in get_se_coef() local 174 fpart.u32 = get_bits_long(gb, hdr->coef_log2_denom); in get_se_coef() 175 return ipart * (1LL << hdr->coef_log2_denom) + fpart.u32; in get_se_coef() 178 fpart.u32 = get_bits_long(gb, 32); in get_se_coef() 179 return fpart.f32 * (1LL << hdr->coef_log2_denom); in get_se_coef()
|
D | opus_silk.c | 350 int cur, prev, next, weight_sq, weight, ipart, fpart, y, value; in silk_decode_lpc() local 361 fpart = (weight_sq >> (ipart-8)) & 127; in silk_decode_lpc() 363 weight = y + ((213 * fpart * y) >> 16); in silk_decode_lpc() 566 int ipart, fpart, lingain; in silk_decode_frame() local 587 fpart = log_gain & 127; in silk_decode_frame() 588 lingain = (1 << ipart) + ((-174 * fpart * (128-fpart) >>16) + fpart) * ((1<<ipart) >> 7); in silk_decode_frame()
|
/third_party/skia/samplecode/ |
D | SamplePathText.cpp | 407 const Sk4f fpart = t - SkNx_cast<float>(ipart); in apply() local 416 const Sk4f height = amplitudes * (left * (1.f - fpart) + right * fpart); in apply()
|
/third_party/astc-encoder/Source/ |
D | astcenc_vecmathlib.h | 328 vfloat4 fpart = x - int_to_float(ipart); in exp2() local 334 vfloat4 fexp = POLY5(fpart, in exp2()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_arit.c | 3238 LLVMValueRef fpart = NULL; in lp_build_exp2() local 3270 lp_build_ifloor_fract(bld, x, &ipart, &fpart); in lp_build_exp2() 3279 expfpart = lp_build_polynomial(bld, fpart, lp_build_exp2_polynomial, in lp_build_exp2() 3574 LLVMValueRef fpart; in lp_build_fast_log2() local 3585 fpart = lp_build_extract_mantissa(bld, x); in lp_build_fast_log2() 3588 return LLVMBuildFAdd(builder, ipart, fpart, ""); in lp_build_fast_log2()
|
/third_party/node/deps/uv/src/win/ |
D | fs.c | 2725 WCHAR* fpart; in fs__statfs() local 2750 &fpart); in fs__statfs() 2764 if (fpart != 0) in fs__statfs() 2765 *fpart = L'\0'; in fs__statfs()
|
/third_party/libuv/src/win/ |
D | fs.c | 2725 WCHAR* fpart; in fs__statfs() local 2750 &fpart); in fs__statfs() 2764 if (fpart != 0) in fs__statfs() 2765 *fpart = L'\0'; in fs__statfs()
|