Lines Matching refs:fraction
40 fraction: Iter2,
59 let (bigmant, digits) = parse_mantissa(integer, fraction, F::MAX_DIGITS);
249 /// Check and round-up the fraction if any non-zero digits exist.
267 mut fraction: Iter2,
309 round_up_nonzero!(format, fraction, result, count);
318 // Skip leading fraction zeros.
321 for &c in &mut fraction {
329 // Process the fraction digits.
330 'fraction: loop {
333 if let Some(&c) = fraction.next() {
336 break 'fraction;
344 round_up_nonzero!(format, fraction, result, count);