Lines Matching defs:Exponent
7158 unsigned int Exponent : 8;
7162 unsigned int Exponent : 8;
7178 unsigned int Exponent : 5;
7182 unsigned int Exponent : 5;
7219 if (f.s.Exponent == 0) // Signed zero/denormal (which will underflow)
7220 o.s.Exponent = 0;
7221 else if (f.s.Exponent == 255) // Inf or NaN (all exponent bits set)
7223 o.s.Exponent = 31;
7227 // Exponent unbias the single, then bias the halfp
7228 int newexp = f.s.Exponent - 127 + 15;
7230 o.s.Exponent = 31;
7241 o.s.Exponent = static_cast<unsigned int>(newexp);