Lines Matching refs:exponent
69 /* The hidden bit is always the low bit of the exponent */
186 /* An infinity is represented with the max exponent and a zero mantissa */
217 #define Sgl_setwrapped_exponent(sgl_value,exponent,op) \
218 Deposit_sexponent(sgl_value,(exponent op SGL_WRAP))
283 #define Sgl_normalize(sgl_opnd,exponent) \
286 exponent -= 8; \
290 exponent -= 4; \
294 exponent -= 1; \
323 #define Sgl_denormalize(opnd,exponent,guard,sticky,inexact) \
325 if (exponent >= (1 - SGL_P)) { \
326 guard = (Sall(opnd) >> (-(exponent))) & 1; \
327 if (exponent < 0) sticky |= Sall(opnd) << (32+exponent); \
329 Sall(opnd) >>= (1-exponent); \