Searched defs:fractHOB (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatingDecimal.java64 static final long fractHOB = ( 1L<<expShift ); // assumed High-Order bit field in class:FloatingDecimal
213 lbits |= fractHOB;
217 while ( (lbits & fractHOB ) == 0L){
447 while ( (fractBits&fractHOB) == 0L ){
454 fractBits |= fractHOB;
619 expOne | ( fractBits &~ fractHOB ) );
H A DFormattedFloatingDecimal.java72 static final long fractHOB = ( 1L<<expShift ); // assumed High-Order bit field in class:FormattedFloatingDecimal
221 lbits |= fractHOB;
225 while ( (lbits & fractHOB ) == 0L){
517 while ( (fractBits&fractHOB) == 0L ){
524 fractBits |= fractHOB;
696 expOne | ( fractBits &~ fractHOB ) );

Completed in 236 milliseconds