Home | History | Annotate | Download | only in Support

Lines Matching refs:exp

826   int64_t exp = ((T.I >> 52) & 0x7ff) - 1023;
829 if (exp < 0)
836 if (exp < 52)
837 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
838 APInt(width, mantissa >> (52 - exp));
842 if (width <= exp - 52)
847 Tmp = Tmp.shl((unsigned)exp - 52);
882 uint64_t exp = n;
885 if (exp > 1023) {
891 exp += 1023; // Increment for 1023 bias
914 T.I = sign | (exp << 52) | mantissa;