Lines Matching defs:he
91 uint16_t hs, he, hm;
153 he = (uint16_t)(hes << 10); // Exponent
158 *hp = (uint16_t)((hs | he | hm) + (uint16_t)1u);
160 *hp = hs | he | hm; // No rounding
166 uint16_t hs, he, hm;
178 he = h & 0x7C00u; // Pick off exponent bits
181 if (!he) { // Denormal will convert to normalized
194 xes = ((int32_t)(he >> 10)) - 15 + 127 - e;
203 if (he == 0x7C00u) { /* Inf or NaN (all the exponent bits are set) */
222 xes = ((int32_t)(he >> 10)) - 15 + 127;