Lines Matching defs:xe
90 uint32_t xs, xe, xm;
102 xe = x & 0x7F800000u; // Pick off exponent bits
105 if (xe == 0) { // Denormal will underflow, return a signed zero
110 if (xe == 0x7F800000u) { // Inf or NaN (all the exponent bits are set)
125 hes = ((int)(xe >> 23)) - 127 + 15;
167 uint32_t xs, xe, xm;
195 xe = (uint32_t)(xes << 23); // Exponent
198 *xp = xs | xe | xm;
223 xe = (uint32_t)(xes << 23); // Exponent
227 *xp = xs | xe | xm;