Searched refs:SNG_FRACBITS (Results 1 – 5 of 5) sorted by relevance
54 e = i0 >> SNG_FRACBITS; in LROUNDNAME()66 if (e < SNG_FRACBITS) { in LROUNDNAME()72 e = ((i0 >> SNG_FRACBITS) & 0xff) - SNG_EXP_BIAS; in LROUNDNAME()74 i0 |= (1 << SNG_FRACBITS); in LROUNDNAME()76 shift = e - SNG_FRACBITS; in LROUNDNAME()
63 e = i0 >> SNG_FRACBITS; in LRINTNAME()75 if (e < SNG_FRACBITS) { in LRINTNAME()82 e = ((i0 >> SNG_FRACBITS) & 0xff) - SNG_EXP_BIAS; in LRINTNAME()84 i0 |= (1 << SNG_FRACBITS); in LRINTNAME()86 shift = e - SNG_FRACBITS; in LRINTNAME()
250 #define SNG_EXP(e) ((e) << SNG_FRACBITS) /* makes e an exponent */260 (void) fpu_shr(fp, FP_NMANT - 1 - SNG_FRACBITS);292 (void) fpu_shr(fp, FP_NMANT - FP_NG - SNG_FRACBITS - exp);301 (void) fpu_shr(fp, FP_NMANT - FP_NG - 1 - SNG_FRACBITS);
151 #define SNG_SHIFT (SNG_FRACBITS - FP_LG)154 frac = i & mask(SNG_FRACBITS);
90 #define SNG_FRACBITS 23 macro