Home | History | Annotate | Download | only in builtins

Lines Matching refs:FLT_MANT_DIG

37     if (sd > FLT_MANT_DIG)
43 * P = bit FLT_MANT_DIG-1 bits to the right of 1
44 * Q = bit FLT_MANT_DIG bits to the right of 1
49 case FLT_MANT_DIG + 1:
52 case FLT_MANT_DIG + 2:
55 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) |
56 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
62 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
63 if (a & ((du_int)1 << FLT_MANT_DIG))
68 /* a is now rounded to FLT_MANT_DIG bits */
72 a <<= (FLT_MANT_DIG - sd);
73 /* a is now rounded to FLT_MANT_DIG bits */