Home
last modified time | relevance | path

Searched refs:FP_NMANT (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/powerpc/fpu/
H A Dfpu_implode.c218 if (fpu_shr(fp, FP_NMANT - 1 - exp) != 0) in fpu_ftoi()
265 if (fpu_shr(fp, FP_NMANT - 1 - exp) != 0) in fpu_ftox()
300 (void) fpu_shr(fp, FP_NMANT - 1 - SNG_FRACBITS); in fpu_ftos()
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()
375 (void) fpu_shr(fp, FP_NMANT - 1 - DBL_FRACBITS); in fpu_ftod()
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.h86 #define FP_NMANT 115 /* total bits in mantissa (incl g,r) */ macro
88 #define FP_LG ((FP_NMANT - 1) & 31) /* log2(1.0) for fp_mant[0] */
89 #define FP_LG2 ((FP_NMANT - 1) & 63) /* log2(1.0) for fp_mant[0] and fp_mant[1] */
H A Dfpu_subr.c78 if (rsh >= FP_NMANT) { in fpu_shr()
H A Dfpu_sqrt.c248 #if (FP_NMANT & 1) != 0 in fpu_sqrt()