roundoff_bits 699 maint/gnulib/lib/fma.c unsigned int roundoff_bits; roundoff_bits 715 maint/gnulib/lib/fma.c roundoff_bits = 0; roundoff_bits 721 maint/gnulib/lib/fma.c roundoff_bits = sum_bits - keep_bits; /* > 0, <= sum_bits */ roundoff_bits 751 maint/gnulib/lib/fma.c if ((sum[(roundoff_bits - 1) / GMP_LIMB_BITS] roundoff_bits 752 maint/gnulib/lib/fma.c >> ((roundoff_bits - 1) % GMP_LIMB_BITS)) & 1) roundoff_bits 756 maint/gnulib/lib/fma.c ((sum[(roundoff_bits - 1) / GMP_LIMB_BITS] roundoff_bits 757 maint/gnulib/lib/fma.c & (((mp_limb_t) 1 << ((roundoff_bits - 1) % GMP_LIMB_BITS)) - 1)) roundoff_bits 762 maint/gnulib/lib/fma.c for (i = (roundoff_bits - 1) / GMP_LIMB_BITS - 1; i >= 0; i--) roundoff_bits 771 maint/gnulib/lib/fma.c round_up = ((sum[roundoff_bits / GMP_LIMB_BITS] roundoff_bits 772 maint/gnulib/lib/fma.c >> (roundoff_bits % GMP_LIMB_BITS)) & 1); roundoff_bits 781 maint/gnulib/lib/fma.c size_t i = roundoff_bits / GMP_LIMB_BITS; roundoff_bits 792 maint/gnulib/lib/fma.c | (((mp_limb_t) 1 << (roundoff_bits % GMP_LIMB_BITS)) - 1)) roundoff_bits 827 maint/gnulib/lib/fma.c sum[i] &= ((mp_limb_t) -1 << (roundoff_bits % GMP_LIMB_BITS));