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

  /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 93 milliseconds