Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Djava_lang_StringToReal.cpp722 uint32_t fmant, fovfl; in createFloat1() local
744 fovfl = ((uint32_t) (dmant & 0x1FFFFFFF)) << 3; in createFloat1()
745 while ((dexp < -127) && ((fmant | fovfl) != 0)) in createFloat1()
749 fovfl |= 0x80000000; in createFloat1()
751 fovfl >>= 1; in createFloat1()
755 if ((fovfl & 0x80000000) != 0) in createFloat1()
757 if ((fovfl & 0x7FFFFFFC) != 0) in createFloat1()
766 else if ((fovfl & 0x40000000) != 0) in createFloat1()
768 if ((fovfl & 0x3FFFFFFC) != 0) in createFloat1()