Home | History | Annotate | Download | only in soft-fp

Lines Matching defs:mantissa

40   UDItype mantissa, t;
53 mantissa = u.u & ((((UDItype) 1) << 53) - 1);
58 mantissa = u.u & ((((UDItype) 1) << 51) - 1);
59 mantissa |= ((UDItype) 1) << 53;
61 if (mantissa > (UDItype) 9999999999999999)
62 mantissa = 0;
86 if (mantissa == 0)
110 rem = mantissa % d;
111 mantissa /= d;
114 if (mantissa == 0)
129 mant_bits = sizeof (0ULL) * __CHAR_BIT__ - __builtin_clzll (mantissa);
146 resv[res_limbs] = mantissa;
149 resv[res_limbs] = mantissa;
152 resv[res_limbs + BITINT_END (1, 0)] = mantissa;
153 resv[res_limbs + BITINT_END (0, 1)] = mantissa >> 32;