Home
last modified time | relevance | path

Searched refs:fmant (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/main/native/
Djava_lang_StringToReal.cpp619 uint32_t fmant, fovfl; in createFloat1() local
640 fmant = (uint32_t) (dmant >> 29); in createFloat1()
642 while ((dexp < -127) && ((fmant | fovfl) != 0)) in createFloat1()
644 if ((fmant & 1) != 0) in createFloat1()
649 fmant >>= 1; in createFloat1()
656 fmant++; in createFloat1()
658 else if ((fmant & 1) != 0) in createFloat1()
660 fmant++; in createFloat1()
667 fmant++; in createFloat1()
670 FLOAT_TO_INTBITS (result) = fmant; in createFloat1()