Home
last modified time | relevance | path

Searched refs:bin_expon (Results 1 – 5 of 5) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libgcc/config/libbid/
Dbid128_div.c44 int exponent_x, exponent_y, bin_index, bin_expon, diff_expon, ed2, variable
196 bin_expon = (fx.i - 0x3f800000) >> 23;
198 digits_q = estimate_decimal_digits[bin_expon];
199 TP128.w[0] = power10_index_binexp_128[bin_expon].w[0];
200 TP128.w[1] = power10_index_binexp_128[bin_expon].w[1];
495 int exponent_x, exponent_y, bin_index, bin_expon, diff_expon, ed2,
657 bin_expon = (fx.i - 0x3f800000) >> 23;
659 digits_q = estimate_decimal_digits[bin_expon];
660 TP128.w[0] = power10_index_binexp_128[bin_expon].w[0];
661 TP128.w[1] = power10_index_binexp_128[bin_expon].w[1];
[all …]
Dbid64_rem.c68 int exponent_x, exponent_y, bin_expon, e_scale; local
190 bin_expon = ((tempx.i >> 23) & 0xff) - 0x7f;
191 digits_x = estimate_decimal_digits[bin_expon];
Dbid64_div.c527 int exponent_x, exponent_y, bin_index, bin_expon, diff_expon, ed2, in bid64_div() local
668 bin_expon = (fx.i - 0x3f800000) >> 23; in bid64_div()
670 digits_q = estimate_decimal_digits[bin_expon]; in bid64_div()
671 TP128.w[0] = power10_index_binexp_128[bin_expon].w[0]; in bid64_div()
672 TP128.w[1] = power10_index_binexp_128[bin_expon].w[1]; in bid64_div()
941 int exponent_x, exponent_y, bin_index, bin_expon, diff_expon, ed2, variable
1091 bin_expon = (fx.i - 0x3f800000) >> 23;
1093 digits_q = estimate_decimal_digits[bin_expon];
1094 TP128.w[0] = power10_index_binexp_128[bin_expon].w[0];
1095 TP128.w[1] = power10_index_binexp_128[bin_expon].w[1];
[all …]
Dbid_inline_add.h1157 int digits_z, bin_expon, scale, rmode; in BID_normalize() local
1172 bin_expon = ((tempx.i & MASK_BINARY_EXPONENT) >> 52) - 0x3ff; in BID_normalize()
1174 digits_z = estimate_decimal_digits[bin_expon]; in BID_normalize()
1234 int bin_expon, scale_k, scale_cz; in add_zero64() local
1240 bin_expon = ((tempx.i & MASK_BINARY_EXPONENT) >> 52) - 0x3ff; in add_zero64()
1241 scale_cz = estimate_decimal_digits[bin_expon]; in add_zero64()
Dbid_internal.h93 #define __tight_bin_range_128(bp, P, bin_expon) \ argument
97 (bp) = (bin_expon); \