Lines Matching defs:exponent

340  *     a significand and an exponent
838 * exponent (as appropriate for the data type), the following transformation
1157 * <p> If <i>m</i> is positive-zero or negative-zero, then the exponent
1172 * part of <i>a</i>, followed by the exponent symbol {@code 'e'}
1173 * (<tt>'&#92;u0065'</tt>), followed by the sign of the exponent, followed
1195 * <td> The upper-case variant of {@code 'e'}. The exponent symbol
1286 * exponent fields. The significand is represented by the characters
1288 * of the significand as a fraction. The exponent is represented by
1290 * unbiased exponent as if produced by invoking {@link
1291 * Integer#toString(int) Integer.toString} on the exponent value.
1296 * of the significand as a fraction. The exponent is represented by
1380 * <p> If <i>m</i> is positive-zero or negative-zero, then the exponent
1395 * part of <i>a</i>, followed by the exponent symbol {@code 'e'}
1396 * (<tt>'&#92;u0065'</tt>), followed by the sign of the exponent, followed
1416 * <td> The upper-case variant of {@code 'e'}. The exponent symbol
3230 ? new char[] {'+','0','0'} : exponent(v, len);
3288 char[] exp = exponent(v, len);
3365 private char[] exponent(char[] v, int len) {
3426 int exponent = FpUtils.getExponent(d);
3428 = (exponent == DoubleConsts.MIN_EXPONENT - 1);
3435 // Calculate the exponent. This is not just exponent + 54
3436 // since the former is not the normalized exponent.
3437 exponent = FpUtils.getExponent(d);
3438 assert exponent >= DoubleConsts.MIN_EXPONENT &&
3439 exponent <= DoubleConsts.MAX_EXPONENT: exponent;
3489 // Get exponent and append at the end.
3562 char[] exp = bdl.exponent();
3636 // exponent = #x - 1
3637 // => f precision = g precision - exponent - 1
3641 // exponent = - #0 (after '.') - 1
3642 // => f precision = g precision - exponent - 1
3689 // The exponent will be formatted as a sign ('+' or '-') followed
3690 // by the exponent zero-padded to include at least two digits.
3691 public char[] exponent() {
3710 // exponent. Otherwise it could have +1 if negative, plus