Home | History | Annotate | Download | only in generic

Lines Matching defs:n2

65   split n = n1 + n2, where an = n1 <= n2 = (1-a)n; i.e. 0 < a <= 1/2.
109 ^ n2 ^n1^
138 mp_size_t n2, n1;
160 n2 = n - n1;
162 /* Split as x = x1 2^(n2 GMP_NUMB_BITS) + x0 */
165 mpn_sqr (tp, xp, n2);
166 MPN_COPY (rp, tp, n2);
168 /* x1 * x0 * 2^(n2 GMP_NUMB_BITS) */
170 mpn_mul_basecase (tp + n, xp + n2, n1, xp, n1);
172 mpn_mullo_basecase (tp + n, xp + n2, xp, n1);
174 mpn_mullo_n (tp + n, xp + n2, xp, n1);
175 /* mpn_dc_mullo_n (tp + n, xp + n2, xp, n1, tp + n); */
177 mpn_addlsh1_n (rp + n2, tp + n2, tp + n, n1);
179 mpn_lshift (rp + n2, tp + n, n1, 1);
180 mpn_add_n (rp + n2, rp + n2, tp + n2, n1);