HomeSort by relevance Sort by last modified time
    Searched refs:decExp (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/java/lang/
FloatingDecimal.java 537 int decExp;
598 * integers B and S and integer decExp, s.t.
599 * d = ( B / S ) * 10^decExp
602 * decExp = floor( log10(d) )
603 * B = d * 2^nTinyBits * 10^max( 0, -decExp )
604 * S = 10^max( 0, decExp) * 2^nTinyBits
607 * M = (1/2^nSignificantBits) * 2^nTinyBits * 10^max( 0, -decExp )
625 * take the floor and call it decExp.
630 decExp = (int)Math.floor(
639 B5 = Math.max( 0, -decExp );
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java 604 int decExp;
665 * integers B and S and integer decExp, s.t.
666 * d = ( B / S ) * 10^decExp
669 * decExp = floor( log10(d) )
670 * B = d * 2^nTinyBits * 10^max( 0, -decExp )
671 * S = 10^max( 0, decExp) * 2^nTinyBits
674 * M = (1/2^nSignificantBits) * 2^nTinyBits * 10^max( 0, -decExp )
692 * take the floor and call it decExp.
697 decExp = (int)Math.floor(
706 B5 = Math.max( 0, -decExp );
    [all...]

Completed in 475 milliseconds