Lines Matching refs:powers
460 const struct mp_power *powers = &_fpioconst_pow10[explog + 1]; in __printf_fp_l() local
481 assert (powers > &_fpioconst_pow10[0]); in __printf_fp_l()
484 --powers; in __printf_fp_l()
488 if (p.exponent >= scaleexpo + powers->p_expo - 1) in __printf_fp_l()
502 p.tmpsize = powers->arraysize + _FLT128_FPIO_CONST_SHIFT; in __printf_fp_l()
504 &__tens[powers->arrayoff], in __printf_fp_l()
522 p.tmpsize = powers->arraysize + _FPIO_CONST_SHIFT; in __printf_fp_l()
524 &__tens[powers->arrayoff], in __printf_fp_l()
534 p.tmpsize = powers->arraysize; in __printf_fp_l()
535 memcpy (p.tmp, &__tens[powers->arrayoff], in __printf_fp_l()
542 &__tens[powers->arrayoff in __printf_fp_l()
544 powers->arraysize - _FPIO_CONST_OFFSET); in __printf_fp_l()
546 + powers->arraysize - _FPIO_CONST_OFFSET; in __printf_fp_l()
562 while (powers > &_fpioconst_pow10[0]); in __printf_fp_l()
662 const struct mp_power *powers = &_fpioconst_pow10[explog + 1]; in __printf_fp_l() local
672 assert (powers != &_fpioconst_pow10[0]); in __printf_fp_l()
675 --powers; in __printf_fp_l()
677 if (p.exponent >= powers->m_expo) in __printf_fp_l()
684 if (p.fracsize < powers->arraysize - _FPIO_CONST_OFFSET) in __printf_fp_l()
685 cy = __mpn_mul (p.tmp, &__tens[powers->arrayoff in __printf_fp_l()
687 powers->arraysize - _FPIO_CONST_OFFSET, in __printf_fp_l()
691 &__tens[powers->arrayoff + _FPIO_CONST_OFFSET], in __printf_fp_l()
692 powers->arraysize - _FPIO_CONST_OFFSET); in __printf_fp_l()
693 p.tmpsize = p.fracsize + powers->arraysize - _FPIO_CONST_OFFSET; in __printf_fp_l()
701 assert (incr <= powers->p_expo); in __printf_fp_l()
789 while (powers != &_fpioconst_pow10[1] && p.exponent > 0); in __printf_fp_l()