Lines Matching refs:precision

170 		  int precision,  in atof_ieee_detail()  argument
202 = generic_floating_point_number.low + precision - 1 + GUARD; in atof_ieee_detail()
214 gen_to_words (words, precision, exponent_bits); in atof_ieee_detail()
237 int precision; in atof_ieee() local
244 precision = H_PRECISION; in atof_ieee()
250 precision = B_PRECISION; in atof_ieee()
258 precision = F_PRECISION; in atof_ieee()
266 precision = D_PRECISION; in atof_ieee()
274 precision = X_PRECISION; in atof_ieee()
280 precision = P_PRECISION; in atof_ieee()
289 return atof_ieee_detail (str, precision, exponent_bits, words, NULL); in atof_ieee()
295 gen_to_words (LITTLENUM_TYPE *words, int precision, long exponent_bits) in gen_to_words() argument
308 words_end = words + precision; in gen_to_words()
310 if (precision == X_PRECISION) in gen_to_words()
334 if (TC_LARGEST_EXPONENT_IS_NORMAL (precision)) in gen_to_words()
337 if (precision == H_PRECISION) in gen_to_words()
344 else if (precision == F_PRECISION) in gen_to_words()
350 else if (precision == X_PRECISION) in gen_to_words()
391 if (TC_LARGEST_EXPONENT_IS_NORMAL (precision)) in gen_to_words()
395 if (precision == H_PRECISION /* also B_PRECISION */) in gen_to_words()
399 else if (precision == F_PRECISION) in gen_to_words()
404 else if (precision == X_PRECISION) in gen_to_words()
487 LITTLENUM_NUMBER_OF_BITS * precision - (exponent_bits + 1 + num_bits); in gen_to_words()
489 if (precision == X_PRECISION && exponent_bits == 15) in gen_to_words()
505 > precision * LITTLENUM_NUMBER_OF_BITS) in gen_to_words()
512 if (precision == X_PRECISION && exponent_bits == 15) in gen_to_words()
525 if (precision == X_PRECISION && exponent_bits == 15) in gen_to_words()
563 || (prec_bits != (precision * LITTLENUM_NUMBER_OF_BITS in gen_to_words()
569 && !(precision == X_PRECISION in gen_to_words()
570 && prec_bits == (precision * LITTLENUM_NUMBER_OF_BITS in gen_to_words()
601 if (precision == X_PRECISION) in gen_to_words()
615 || (! TC_LARGEST_EXPONENT_IS_NORMAL (precision) in gen_to_words()
636 if (exponent_bits == 15 && precision == X_PRECISION) in gen_to_words()
674 if (precision == X_PRECISION && exponent_bits == 15) in gen_to_words()