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

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFormattedFloatingDecimal.java68 static final long expMask = 0x7ff0000000000000L; field in class:FormattedFloatingDecimal
69 static final long fractMask= ~(signMask|expMask);
283 long binexp = lbits & expMask;
284 if ( binexp == 0L || binexp == expMask ){
491 binExp = (int)( (dBits&expMask) >> expShift );
493 if ( binExp == (int)(expMask>>expShift) ) {
H A DFloatingDecimal.java60 static final long expMask = 0x7ff0000000000000L; field in class:FloatingDecimal
61 static final long fractMask= ~(signMask|expMask);
275 long binexp = lbits & expMask;
276 if ( binexp == 0L || binexp == expMask ){
421 binExp = (int)( (dBits&expMask) >> expShift );
423 if ( binExp == (int)(expMask>>expShift) ) {

Completed in 56 milliseconds