Searched refs:expShift (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFormattedFloatingDecimal.java70 static final int expShift = 52; field in class:FormattedFloatingDecimal
72 static final long fractHOB = ( 1L<<expShift ); // assumed High-Order bit
73 static final long expOne = ((long)expBias)<<expShift; // exponent of 1.0
218 int binexp = (int)(lbits >>> expShift);
236 int lowOrderZeros = expShift+1-nbits;
252 int binexp = (int)(lbits >>> expShift);
254 if ( subtracting && ( binexp >= expShift ) && ((lbits&fractMask) == 0L) ){
259 if ( binexp > expShift ){
260 ulpval = Double.longBitsToDouble( ((long)(binexp-expShift))<<expShift );
[all...]
H A DFloatingDecimal.java62 static final int expShift = 52; field in class:FloatingDecimal
64 static final long fractHOB = ( 1L<<expShift ); // assumed High-Order bit
65 static final long expOne = ((long)expBias)<<expShift; // exponent of 1.0
210 int binexp = (int)(lbits >>> expShift);
228 int lowOrderZeros = expShift+1-nbits;
244 int binexp = (int)(lbits >>> expShift);
246 if ( subtracting && ( binexp >= expShift ) && ((lbits&fractMask) == 0L) ){
251 if ( binexp > expShift ){
252 ulpval = Double.longBitsToDouble( ((long)(binexp-expShift))<<expShift );
[all...]

Completed in 38 milliseconds