HomeSort by relevance Sort by last modified time
    Searched full:fovfl (Results 1 - 1 of 1) sorted by null

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

Completed in 3373 milliseconds