Home | History | Annotate | Download | only in generic

Lines Matching refs:rn

54   mp_size_t rn;
60 rn = mpn_mulmod_bnm1_next_size (n);
62 scratch = TMP_ALLOC_LIMBS (n + rn + mpn_mulmod_bnm1_itch (rn, n, n));
68 mpn_mulmod_bnm1 (yp, rn, xp, n, mp, n, scratch + n + rn);
70 ASSERT_ALWAYS (2 * n > rn); /* could handle this */
72 cy = mpn_sub_n (yp + rn, yp, up, 2*n - rn); /* undo wrap around */
73 MPN_DECR_U (yp + 2*n - rn, rn, cy);