Home
last modified time | relevance | path

Searched refs:nSignificantBits (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/jdk/internal/math/
DFloatingDecimal.java424 … private void dtoa( int binExp, long fractBits, int nSignificantBits, boolean isCompatibleFormat) in dtoa() argument
466 if ( binExp > nSignificantBits ){ in dtoa()
467 insignificant = insignificantDigitsForPow2(binExp-nSignificantBits-1); in dtoa()
527 M2 = B2 - nSignificantBits; in dtoa()
1766 int nSignificantBits; in getBinaryToASCIIConverter() local
1776 nSignificantBits = 64-leadingZeros; // recall binExp is - shift count. in getBinaryToASCIIConverter()
1779 nSignificantBits = EXP_SHIFT+1; in getBinaryToASCIIConverter()
1785 buf.dtoa(binExp, fractBits, nSignificantBits, isCompatibleFormat); in getBinaryToASCIIConverter()
1806 int nSignificantBits; in getBinaryToASCIIConverter() local
1816 nSignificantBits = 32 - leadingZeros; // recall binExp is - shift count. in getBinaryToASCIIConverter()
[all …]
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DFloatingDecimal.java338 int binExp, long fractBits, int nSignificantBits, boolean isCompatibleFormat) { in dtoa() argument