Lines Matching refs:SGL_EXP_LENGTH
76 (Sall(sgl_value) << (SGL_EXP_LENGTH + 1 + exponent)) : false)
78 #define Int_isinexact_to_sgl(int_value) ((int_value << (33 - SGL_EXP_LENGTH)) != 0)
81 if (int_value & 1<<(SGL_EXP_LENGTH - 2)) /* round bit */ \
82 if (((int_value << (34 - SGL_EXP_LENGTH)) != 0) || Slow(sgl_value)) \
86 (((Dintp1(dint_valueA) << (33 - SGL_EXP_LENGTH)) != 0) || Dintp2(dint_valueB))
89 if (Dintp1(dint_valueA) & 1<<(SGL_EXP_LENGTH - 2)) \
90 if (((Dintp1(dint_valueA) << (34 - SGL_EXP_LENGTH)) != 0) || \
102 ((Sall(sgl_value) << (SGL_EXP_LENGTH + 1 + exponent)) >> 31)
106 Sall(sgl_value) << (SGL_EXP_LENGTH + 2 + exponent) : false)
232 (unsigned)(Sall(sgl_value) << SGL_EXP_LENGTH)>>(31 - exponent)
245 {Sall(sgl_value) <<= SGL_EXP_LENGTH; /* left-justify */ \