Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/src/
Dnum_get_float.cpp398 int lead0 = 12 - bexp; /* 12 sign and exponent bits */ in _Stl_atod() local
401 if (lead0 > 64) { in _Stl_atod()
406 else if (lead0 == 64) { in _Stl_atod()
412 rest = value & (((ULL(1) << lead0)-1)-1); in _Stl_atod()
413 guard = (uint32) (((value>> lead0)-1) & 1); in _Stl_atod()
414 value >>= /*(uint64)*/ lead0; /* exponent is zero */ in _Stl_atod()
598 int lead0 = M - bexp; /* M = 12 sign and exponent bits */ in _Stl_atodT() local
604 if (lead0 > 64) { in _Stl_atodT()
608 } else if (lead0 == 64) { in _Stl_atodT()
613 rest = vv.i64 & (((ULL(1) << lead0)-1)-1); in _Stl_atodT()
[all …]