Home | History | Annotate | Download | only in src

Lines Matching refs:exponent

169         int exponent = decimal_point - 1;
170 if (exponent < 0) exponent = -exponent;
171 builder.AddDecimalInteger(exponent);
271 int exponent,
275 if (exponent < 0) {
277 exponent = -exponent;
281 // letter 'e', a minus or a plus depending on the exponent, and a
282 // three digit exponent.
297 builder.AddDecimalInteger(exponent);
339 int exponent = decimal_point - 1;
341 CreateExponentialRepresentation(decimal_rep, exponent, negative, f+1);
372 int exponent = decimal_point - 1;
376 if (exponent < -6 || exponent >= p) {
378 CreateExponentialRepresentation(decimal_rep, exponent, negative, p);
425 // fractional part. 1024 characters for the exponent and 52 for the mantissa
482 while (Double(integer / radix).Exponent() > 0) {