OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fractBits
(Results
1 - 2
of
2
) sorted by null
/libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java
475
long
fractBits
;
492
fractBits
= dBits&fractMask;
495
if (
fractBits
== 0L ){
510
if (
fractBits
== 0L ){
517
while ( (
fractBits
&fractHOB) == 0L ){
518
fractBits
<<= 1;
524
fractBits
|= fractHOB;
529
dtoa( binExp,
fractBits
, nSignificantBits );
542
int
fractBits
;
559
fractBits
= fBits&singleFractMask
[
all
...]
/libcore/ojluni/src/main/java/java/lang/
FloatingDecimal.java
409
long
fractBits
;
427
fractBits
= dBits&fractMask;
430
if (
fractBits
== 0L ){
445
if (
fractBits
== 0L ){
452
while ( (
fractBits
&fractHOB) == 0L ){
453
fractBits
<<= 1;
459
fractBits
|= fractHOB;
464
dtoa( binExp,
fractBits
, nSignificantBits );
473
int
fractBits
;
491
fractBits
= fBits&singleFractMask
[
all
...]
Completed in 109 milliseconds