Lines Matching defs:tn
76 mp_size_t tn, seedn, an;
100 tn = BITS_TO_LIMBS (m2exp);
101 if (ta <= tn) /* that is, if (ta < tn + 1) */
104 ta = tn + 1;
115 /* t = t + c. NOTE: tn is always >= p->_cn (precondition for __GMPN_ADD);
117 ASSERT (tn >= p->_cn);
118 __GMPN_ADD (cy, tp, tp, tn, p->_cp, p->_cn);
124 MPN_COPY (PTR (p->_mp_seed), tp, tn);
130 tn -= xn;
131 if (tn > 0)
136 mpn_rshift (tp, tp + xn, tn, cnt);
140 MPN_COPY_INCR (rp, tp + xn, tn);
157 mp_size_t tn;
166 tn = BITS_TO_LIMBS (chunk_nbits);
168 tp = TMP_ALLOC_LIMBS (tn);
182 rcy = mpn_lshift (r2p, tp, tn, rbitpos % GMP_NUMB_BITS);
187 r2p[tn] = rcy;
203 tn = BITS_TO_LIMBS (last_nbits);
211 rcy = mpn_lshift (r2p, tp, tn, rbitpos % GMP_NUMB_BITS);
213 if (rbitpos + tn * GMP_NUMB_BITS - rbitpos % GMP_NUMB_BITS < nbits)
214 r2p[tn] = rcy;
218 MPN_COPY (r2p, tp, tn);