Searched refs:fpart (Results 1 – 6 of 6) sorted by relevance
/third_party/boost/boost/convert/ |
D | strtol.hpp | 130 double fpart = adjust_fraction(value - ipart, precision_); in to_str() local 140 for (char_type* fpos = end += precision; precision; --precision, fpart /= base) in to_str() 141 *(--fpos) = get_char(int(fpart - std::floor(fpart / base) * base)); in to_str() 143 if (1 <= fpart) in to_str()
|
/third_party/ffmpeg/libavcodec/ |
D | opus_silk.c | 349 int cur, prev, next, weight_sq, weight, ipart, fpart, y, value; in silk_decode_lpc() local 360 fpart = (weight_sq >> (ipart-8)) & 127; in silk_decode_lpc() 362 weight = y + ((213 * fpart * y) >> 16); in silk_decode_lpc() 565 int ipart, fpart, lingain; in silk_decode_frame() local 586 fpart = log_gain & 127; in silk_decode_frame() 587 lingain = (1 << ipart) + ((-174 * fpart * (128-fpart) >>16) + fpart) * ((1<<ipart) >> 7); in silk_decode_frame()
|
/third_party/flutter/skia/samplecode/ |
D | SamplePathText.cpp | 404 const Sk4f fpart = t - SkNx_cast<float>(ipart); in apply() local 413 const Sk4f height = amplitudes * (left * (1.f - fpart) + right * fpart); in apply()
|
/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/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_arit.c | 3250 LLVMValueRef fpart = NULL; in lp_build_exp2() local 3282 lp_build_ifloor_fract(bld, x, &ipart, &fpart); in lp_build_exp2() 3291 expfpart = lp_build_polynomial(bld, fpart, lp_build_exp2_polynomial, in lp_build_exp2() 3586 LLVMValueRef fpart; in lp_build_fast_log2() local 3597 fpart = lp_build_extract_mantissa(bld, x); in lp_build_fast_log2() 3600 return LLVMBuildFAdd(builder, ipart, fpart, ""); in lp_build_fast_log2()
|
/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()
|