Lines Matching refs:_h
228 unsigned short _h; variable
451 _h = (x.i >> 16); in half()
483 _h = e + ((m + 0x00000fff + ((m >> 13) & 1)) >> 13); in half()
491 _h = convert (x.i); in half()
504 return _toFloat[_h].f;
527 unsigned short s = _h & 0x8000; in round()
528 unsigned short e = _h & 0x7fff; in round()
551 e = _h; in round()
561 h._h = s | e; in round()
575 h._h = _h ^ 0x8000;
583 _h = h._h;
663 unsigned short e = (_h >> 10) & 0x001f; in isFinite()
671 unsigned short e = (_h >> 10) & 0x001f; in isNormalized()
679 unsigned short e = (_h >> 10) & 0x001f; in isDenormalized()
680 unsigned short m = _h & 0x3ff; in isDenormalized()
688 return (_h & 0x7fff) == 0; in isZero()
695 unsigned short e = (_h >> 10) & 0x001f; in isNan()
696 unsigned short m = _h & 0x3ff; in isNan()
704 unsigned short e = (_h >> 10) & 0x001f; in isInfinity()
705 unsigned short m = _h & 0x3ff; in isInfinity()
713 return (_h & 0x8000) != 0; in isNegative()
721 h._h = 0x7c00; in posInf()
730 h._h = 0xfc00; in negInf()
739 h._h = 0x7fff; in qNan()
748 h._h = 0x7dff; in sNan()
756 return _h; in bits()
763 _h = bits; in setBits()