HomeSort by: relevance | last modified time | path
    Searched refs:digits_x (Results 1 - 12 of 12) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid64_quantize.c 50 int exponent_x, exponent_y, digits_x, extra_digits, amount, amount2; local
118 digits_x = estimate_decimal_digits[bin_expon_cx];
119 if (coefficient_x >= power10_table_128[digits_x].w[0])
120 digits_x++;
123 total_digits = digits_x + expon_diff;
bid128_quantize.c 33 int exponent_x, exponent_y, digits_x, extra_digits, amount; variable
120 digits_x = estimate_decimal_digits[bin_expon_cx];
121 if (CX.w[1] > power10_table_128[digits_x].w[1]
122 || (CX.w[1] == power10_table_128[digits_x].w[1]
123 && CX.w[0] >= power10_table_128[digits_x].w[0]))
124 digits_x++;
127 total_digits = digits_x + expon_diff;
bid64_string.c 47 int istart, exponent_x, j, digits_x, bin_expon_cx; local
103 digits_x = estimate_decimal_digits[bin_expon_cx];
104 if ((UINT64)exponent_x >= power10_table_128[digits_x].w[0])
105 digits_x++;
107 j = istart + digits_x - 1;
211 digits_x = estimate_decimal_digits[bin_expon_cx];
212 if ((UINT64)exponent_x >= power10_table_128[digits_x].w[0])
213 digits_x++;
215 j = istart + digits_x - 1;
bid64_rem.c 69 int digits_x, diff_expon; local
191 digits_x = estimate_decimal_digits[bin_expon];
193 //if(coefficient_x >= power10_table_128[digits_x].w[0])
194 // digits_x++;
196 e_scale = 18 - digits_x;
bid_inline_add.h 776 int digits_x, bin_expon_cx; local
783 digits_x = estimate_decimal_digits[bin_expon_cx];
784 if (X.w[0] >= power10_table_128[digits_x].w[0])
785 digits_x++;
786 return digits_x;
791 digits_x = estimate_decimal_digits[bin_expon_cx + 64];
792 if (__unsigned_compare_ge_128 (X, power10_table_128[digits_x]))
793 digits_x++;
795 return digits_x;
813 int extra_dx, diff_dec2, bin_expon_cx, digits_x, rmode local
    [all...]
bid64_sqrt.c 74 int digits_x; local
124 digits_x = estimate_decimal_digits[bin_expon_cx];
127 digits_x++;
147 scale = 31 - digits_x;
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid64_quantize.c 50 int exponent_x, exponent_y, digits_x, extra_digits, amount, amount2; local
118 digits_x = estimate_decimal_digits[bin_expon_cx];
119 if (coefficient_x >= power10_table_128[digits_x].w[0])
120 digits_x++;
123 total_digits = digits_x + expon_diff;
bid128_quantize.c 33 int exponent_x, exponent_y, digits_x, extra_digits, amount; variable
120 digits_x = estimate_decimal_digits[bin_expon_cx];
121 if (CX.w[1] > power10_table_128[digits_x].w[1]
122 || (CX.w[1] == power10_table_128[digits_x].w[1]
123 && CX.w[0] >= power10_table_128[digits_x].w[0]))
124 digits_x++;
127 total_digits = digits_x + expon_diff;
bid64_string.c 47 int istart, exponent_x, j, digits_x, bin_expon_cx; local
103 digits_x = estimate_decimal_digits[bin_expon_cx];
104 if ((UINT64)exponent_x >= power10_table_128[digits_x].w[0])
105 digits_x++;
107 j = istart + digits_x - 1;
211 digits_x = estimate_decimal_digits[bin_expon_cx];
212 if ((UINT64)exponent_x >= power10_table_128[digits_x].w[0])
213 digits_x++;
215 j = istart + digits_x - 1;
bid64_rem.c 69 int digits_x, diff_expon; local
191 digits_x = estimate_decimal_digits[bin_expon];
193 //if(coefficient_x >= power10_table_128[digits_x].w[0])
194 // digits_x++;
196 e_scale = 18 - digits_x;
bid_inline_add.h 776 int digits_x, bin_expon_cx; local
783 digits_x = estimate_decimal_digits[bin_expon_cx];
784 if (X.w[0] >= power10_table_128[digits_x].w[0])
785 digits_x++;
786 return digits_x;
791 digits_x = estimate_decimal_digits[bin_expon_cx + 64];
792 if (__unsigned_compare_ge_128 (X, power10_table_128[digits_x]))
793 digits_x++;
795 return digits_x;
813 int extra_dx, diff_dec2, bin_expon_cx, digits_x, rmode local
    [all...]
bid64_sqrt.c 74 int digits_x; local
124 digits_x = estimate_decimal_digits[bin_expon_cx];
127 digits_x++;
147 scale = 31 - digits_x;

Completed in 31 milliseconds