OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fmant
(Results
1 - 3
of
3
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
aifc.py
232
fmant
, expon = math.frexp(x)
233
if expon > 16384 or
fmant
>= 1 or
fmant
!=
fmant
: # Infinity or NaN
240
fmant
= math.ldexp(
fmant
, expon)
243
fmant
= math.ldexp(
fmant
, 32)
244
fsmant = math.floor(
fmant
)
246
fmant
= math.ldexp(fmant - fsmant, 32
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
aifc.py
232
fmant
, expon = math.frexp(x)
233
if expon > 16384 or
fmant
>= 1 or
fmant
!=
fmant
: # Infinity or NaN
240
fmant
= math.ldexp(
fmant
, expon)
243
fmant
= math.ldexp(
fmant
, 32)
244
fsmant = math.floor(
fmant
)
246
fmant
= math.ldexp(fmant - fsmant, 32
[
all
...]
/libcore/luni/src/main/native/
java_lang_StringToReal.cpp
722
uint32_t
fmant
, fovfl;
local
743
fmant
= (uint32_t) (dmant >> 29);
745
while ((dexp < -127) && ((
fmant
| fovfl) != 0))
747
if ((
fmant
& 1) != 0)
752
fmant
>>= 1;
759
fmant
++;
761
else if ((
fmant
& 1) != 0)
763
fmant
++;
770
fmant
++;
773
FLOAT_TO_INTBITS (result) =
fmant
;
[
all
...]
Completed in 4225 milliseconds