OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:binexp
(Results
1 - 2
of
2
) sorted by null
/libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java
218
int
binexp
= (int)(lbits >>> expShift);
local
220
if (
binexp
> 0 ){
224
binexp
+=1;
227
binexp
-= 1;
230
binexp
-= expBias;
239
bigIntExp =
binexp
+1-nbits;
252
int
binexp
= (int)(lbits >>> expShift);
local
254
if ( subtracting && (
binexp
>= expShift ) && ((lbits&fractMask) == 0L) ){
257
binexp
-= 1;
259
if (
binexp
> expShift )
283
long
binexp
= lbits & expMask;
local
[
all
...]
/libcore/ojluni/src/main/java/java/lang/
FloatingDecimal.java
201
int
binexp
= (int)(lbits >>> expShift);
local
203
if (
binexp
> 0 ){
207
binexp
+=1;
210
binexp
-= 1;
213
binexp
-= expBias;
222
bigIntExp =
binexp
+1-nbits;
235
int
binexp
= (int)(lbits >>> expShift);
local
237
if ( subtracting && (
binexp
>= expShift ) && ((lbits&fractMask) == 0L) ){
240
binexp
-= 1;
242
if (
binexp
> expShift )
266
long
binexp
= lbits & expMask;
local
[
all
...]
Completed in 70 milliseconds