Home | History | Annotate | Download | only in libiberty

Lines Matching defs:mant

490   unsigned long mant;
560 mant = get_field (ufrom, fmt->byteorder, fmt->totalsize,
563 dto += ldexp ((double) mant, exponent - mant_bits);
630 double mant;
675 mant = frexp (dfrom, &exponent);
685 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
695 mant *= 4294967296.0;
696 mant_long = (unsigned long)mant;
697 mant -= mant_long;