Home
last modified time | relevance | path

Searched refs:FP_NG (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/powerpc/fpu/
H A Dfpu_implode.c90 m3 = (m3 >> FP_NG) | (m2 << (32 - FP_NG)); in round()
91 m2 = (m2 >> FP_NG) | (m1 << (32 - FP_NG)); in round()
92 m1 = (m1 >> FP_NG) | (m0 << (32 - FP_NG)); in round()
93 m0 >>= FP_NG; in round()
332 (void) fpu_shr(fp, FP_NMANT - FP_NG - SNG_FRACBITS - exp); in fpu_ftos()
341 (void) fpu_shr(fp, FP_NMANT - FP_NG - 1 - SNG_FRACBITS); in fpu_ftos()
343 if ((fp->fp_mant[3] & SNG_EXP(1 << FP_NG)) == 0) in fpu_ftos()
389 (void) fpu_shr(fp, FP_NMANT - FP_NG - DBL_FRACBITS - exp); in fpu_ftod()
400 (void) fpu_shr(fp, FP_NMANT - FP_NG - 1 - DBL_FRACBITS); in fpu_ftod()
H A Dfpu_emu.h87 #define FP_NG 2 /* number of low-order guard bits */ macro
H A Dfpu_mul.c188 bit = 1 << FP_NG; in fpu_mul()