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.cpp619 uint32_t fmant, fovfl; in createFloat1() local
641 fovfl = ((uint32_t) (dmant & 0x1FFFFFFF)) << 3; in createFloat1()
642 while ((dexp < -127) && ((fmant | fovfl) != 0)) in createFloat1()
646 fovfl |= 0x80000000; in createFloat1()
648 fovfl >>= 1; in createFloat1()
652 if ((fovfl & 0x80000000) != 0) in createFloat1()
654 if ((fovfl & 0x7FFFFFFC) != 0) in createFloat1()
663 else if ((fovfl & 0x40000000) != 0) in createFloat1()
665 if ((fovfl & 0x3FFFFFFC) != 0) in createFloat1()