Home | History | Annotate | Download | only in mpn

Lines Matching defs:mant_bits

127   int        i, mant_bits;
132 mant_bits = tests_dbl_mant_bits ();
133 if (mant_bits == 0)
136 np = refmpn_malloc_limbs (BITS_TO_LIMBS (mant_bits));
138 for (i = 1; i < mant_bits; i++)
405 unsigned long mant_bits;
412 mant_bits = tests_dbl_mant_bits ();
413 if (mant_bits == 0)
418 exp_min = -100 - mant_bits;
419 exp_max = 100 - mant_bits;
421 /* space for mant_bits */
422 nalloc = BITS_TO_LIMBS (mant_bits);
425 >> (GMP_NAIL_BITS + nalloc * GMP_NUMB_BITS - mant_bits);
432 /* mant_bits worth of random at np */
447 for (i = 0, d = 1.0; i < mant_bits; i++, d *= 2.0)