Home | History | Annotate | Download | only in generic

Lines Matching defs:extra_bits

82      the GMP_NUMB_BITS * s - extra_bits as the current target size. */
87 unsigned extra_bits = 0;
112 if (GMP_NUMB_BITS * (n + 1) + 2 * extra_bits <= 2*GMP_NUMB_BITS * s)
114 mp_size_t p = (GMP_NUMB_BITS * (2*s - n) - 2*extra_bits) / GMP_NUMB_BITS;
116 if (extra_bits == 0)
126 extra_bits = GMP_NUMB_BITS - 1;
131 extra_bits--;
141 if (extra_bits > 0)
151 ap[0] = mpn_rshift (ap+1, ap+1, n, GMP_NUMB_BITS - extra_bits);
152 bp[0] = mpn_rshift (bp+1, bp+1, n, GMP_NUMB_BITS - extra_bits);