Searched refs:shiftBy (Results 1 - 1 of 1) sorted by relevance

/haiku-fatelf/src/kits/locale/
H A DGenericNumberFormat.cpp653 int shiftBy = kMaxFloatDigitCount - fExponent - 1; local
654 // We don't multiply with 10^shiftBy not in one go, since for
655 // subnormal numbers 10^shiftBy will not be representable. Maybe
658 double mantissa = number * pow(10, shiftBy / 2);
659 mantissa *= pow(10, shiftBy - shiftBy / 2);

Completed in 39 milliseconds