Home | History | Annotate | Download | only in printf

Lines Matching defs:cnt_h

462       int cnt_h, cnt_l, i;
552 count_leading_zeros (cnt_h, scale[scalesize - 1]);
554 if (cnt_h == 0)
583 if (i == 0 && BITS_PER_MP_LIMB - cnt_h > cnt_l)
588 (void) mpn_lshift (scale, scale, scalesize, cnt_h);
589 cy = mpn_lshift (frac, frac, fracsize, cnt_h);
593 else if (BITS_PER_MP_LIMB - cnt_h <= cnt_l)
600 BITS_PER_MP_LIMB - cnt_h);
603 BITS_PER_MP_LIMB - cnt_h);
613 BITS_PER_MP_LIMB - cnt_h);
617 BITS_PER_MP_LIMB - cnt_h);
645 int i, incr, cnt_h, cnt_l;
663 count_leading_zeros (cnt_h, tmp[tmpsize - 1]);
665 + BITS_PER_MP_LIMB - 1 - cnt_h;
674 if (cnt_h <= BITS_PER_MP_LIMB - 4)
678 = ((mp_limb_t) 10) << (BITS_PER_MP_LIMB - 4 - cnt_h);
685 BITS_PER_MP_LIMB - cnt_h);
708 cnt_h += -exponent;
712 if (cnt_h == BITS_PER_MP_LIMB - 1)
722 if (i == 0 && BITS_PER_MP_LIMB - 1 - cnt_h > cnt_l)
728 cy = mpn_lshift (frac, tmp, tmpsize, cnt_h + 1);
732 else if (BITS_PER_MP_LIMB - 1 - cnt_h <= cnt_l)
735 BITS_PER_MP_LIMB - 1 - cnt_h);
746 BITS_PER_MP_LIMB - 1 - cnt_h);