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

  /libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java 631 long halfULP;
634 halfULP = 1L << ( binExp-nSignificantBits-1);
636 halfULP = 0L;
643 developLongDigits( 0, fractBits, halfULP );
649 * halfULP here is apparently not correct. If we
656 * halfULP = long5pow[ nTinyBits ] >> (1+nSignificantBits-nFractBits);
657 * developLongDigits( -nTinyBits, fractBits, halfULP );
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
FloatingDecimal.java 564 long halfULP;
567 halfULP = 1L << ( binExp-nSignificantBits-1);
569 halfULP = 0L;
576 developLongDigits( 0, fractBits, halfULP );
582 * halfULP here is apparently not correct. If we
589 * halfULP = long5pow[ nTinyBits ] >> (1+nSignificantBits-nFractBits);
590 * developLongDigits( -nTinyBits, fractBits, halfULP );
    [all...]

Completed in 45 milliseconds