| /netbsd-src/sys/dev/ic/ |
| H A D | cy.c | 253 #define CY_BOARD(cy) ((cy)->cy_softc) argument 283 struct cy_port *cy; in cyopen() local 287 cy = CY_PORT(dev); in cyopen() 288 if (cy == NULL) in cyopen() 290 sc = CY_BOARD(cy); in cyopen() 293 if (cy->cy_tty == NULL) { in cyopen() 294 if ((cy->cy_tty = tty_alloc()) == NULL) { in cyopen() 298 cy->cy_port_num); in cyopen() 301 tty_attach(cy->cy_tty); in cyopen() 305 tp = cy->cy_tty; in cyopen() [all …]
|
| /netbsd-src/external/lgpl3/gmp/dist/mpn/generic/ |
| H A D | toom33_mul.c | 95 mp_limb_t cy, vinf0; in mpn_toom33_mul() local 130 cy = mpn_add (gp, a0, n, a2, s); in mpn_toom33_mul() 132 if (cy == 0 && mpn_cmp (gp, a1, n) < 0) in mpn_toom33_mul() 134 cy = mpn_add_n_sub_n (as1, asm1, a1, gp, n); in mpn_toom33_mul() 135 as1[n] = cy >> 1; in mpn_toom33_mul() 143 as1[n] = cy + (cy2 >> 1); in mpn_toom33_mul() 144 asm1[n] = cy - (cy2 & 1); in mpn_toom33_mul() 147 as1[n] = cy + mpn_add_n (as1, gp, a1, n); in mpn_toom33_mul() 148 if (cy == 0 && mpn_cmp (gp, a1, n) < 0) in mpn_toom33_mul() 156 cy -= mpn_sub_n (asm1, gp, a1, n); in mpn_toom33_mul() [all …]
|
| H A D | toom3_sqr.c | 83 mp_limb_t cy, vinf0; in mpn_toom3_sqr() local 104 cy = mpn_add (gp, a0, n, a2, s); in mpn_toom3_sqr() 106 if (cy == 0 && mpn_cmp (gp, a1, n) < 0) in mpn_toom3_sqr() 108 cy = mpn_add_n_sub_n (as1, asm1, a1, gp, n); in mpn_toom3_sqr() 109 as1[n] = cy >> 1; in mpn_toom3_sqr() 116 as1[n] = cy + (cy2 >> 1); in mpn_toom3_sqr() 117 asm1[n] = cy - (cy2 & 1); in mpn_toom3_sqr() 120 as1[n] = cy + mpn_add_n (as1, gp, a1, n); in mpn_toom3_sqr() 121 if (cy == 0 && mpn_cmp (gp, a1, n) < 0) in mpn_toom3_sqr() 128 cy -= mpn_sub_n (asm1, gp, a1, n); in mpn_toom3_sqr() [all …]
|
| H A D | sqrmod_bnm1.c | 49 mp_limb_t cy; in mpn_bc_sqrmod_bnm1() local 54 cy = mpn_add_n (rp, tp, tp + rn, rn); in mpn_bc_sqrmod_bnm1() 57 MPN_INCR_U (rp, rn, cy); in mpn_bc_sqrmod_bnm1() 68 mp_limb_t cy; in mpn_bc_sqrmod_bnp1() local 75 cy = tp[2*rn] + mpn_sub_n (rp, tp, tp+rn, rn); in mpn_bc_sqrmod_bnp1() 77 MPN_INCR_U (rp, rn+1, cy); in mpn_bc_sqrmod_bnp1() 111 mp_limb_t cy; in mpn_sqrmod_bnm1() local 113 cy = mpn_add (rp, tp, rn, tp + rn, 2*an - rn); in mpn_sqrmod_bnm1() 114 MPN_INCR_U (rp, rn, cy); in mpn_sqrmod_bnm1() 123 mp_limb_t cy; in mpn_sqrmod_bnm1() local [all …]
|
| H A D | toom42_mulmid.c | 58 mp_limb_t cy, e[12], zh, zl; in mpn_toom42_mulmid() local 99 cy = mpn_add_err1_n (s, ap, ap + m, &e0l, bp + m, m - 1, 0); in mpn_toom42_mulmid() 100 cy = mpn_add_err2_n (s + m - 1, ap + m - 1, ap + 2*m - 1, &e1l, in mpn_toom42_mulmid() 101 bp + m, bp, m, cy); in mpn_toom42_mulmid() 102 mpn_add_err1_n (s + 2*m - 1, ap + 2*m - 1, ap + 3*m - 1, &e3l, bp, m, cy); in mpn_toom42_mulmid() 134 ADDC_LIMB (cy, e1l, e1l, p0[m]); in mpn_toom42_mulmid() 135 e1h += p0[m + 1] + cy; in mpn_toom42_mulmid() 145 ADDC_LIMB (cy, e1l, e1l, p0[m]); in mpn_toom42_mulmid() 146 e1h += p0[m + 1] + cy; in mpn_toom42_mulmid() 154 SUBC_LIMB (cy, rp[0], rp[0], e0l); in mpn_toom42_mulmid() [all …]
|
| H A D | mulmod_bnm1.c | 50 mp_limb_t cy; in mpn_bc_mulmod_bnm1() local 55 cy = mpn_add_n (rp, tp, tp + rn, rn); in mpn_bc_mulmod_bnm1() 58 MPN_INCR_U (rp, rn, cy); in mpn_bc_mulmod_bnm1() 70 mp_limb_t cy; in mpn_bc_mulmod_bnp1() local 77 cy = tp[2*rn] + mpn_sub_n (rp, tp, tp+rn, rn); in mpn_bc_mulmod_bnp1() 79 MPN_INCR_U (rp, rn+1, cy); in mpn_bc_mulmod_bnp1() 116 mp_limb_t cy; in mpn_mulmod_bnm1() local 118 cy = mpn_add (rp, tp, rn, tp + rn, an + bn - rn); in mpn_mulmod_bnm1() 119 MPN_INCR_U (rp, rn, cy); in mpn_mulmod_bnm1() 128 mp_limb_t cy; in mpn_mulmod_bnm1() local [all …]
|
| H A D | toom53_mul.c | 68 mp_limb_t cy; in mpn_toom53_mul() local 118 cy = mpn_addlsh1_n (ash, a1, a0, n); in mpn_toom53_mul() 119 cy = 2*cy + mpn_addlsh1_n (ash, a2, ash, n); in mpn_toom53_mul() 120 cy = 2*cy + mpn_addlsh1_n (ash, a3, ash, n); in mpn_toom53_mul() 125 ash[n] = 2*cy + mpn_lshift (ash + s, ash + s, n - s, 1); in mpn_toom53_mul() 129 ash[n] = 2*cy + mpn_addlsh1_n (ash, a4, ash, n); in mpn_toom53_mul() 131 cy = mpn_lshift (ash, a0, n, 1); in mpn_toom53_mul() 132 cy += mpn_add_n (ash, ash, a1, n); in mpn_toom53_mul() 133 cy = 2*cy + mpn_lshift (ash, ash, n, 1); in mpn_toom53_mul() 134 cy += mpn_add_n (ash, ash, a2, n); in mpn_toom53_mul() [all …]
|
| H A D | sbpi1_div_q.c | 52 mp_limb_t cy, cy1; in mpn_sbpi1_div_q() local 101 cy = mpn_submul_1 (np - dn, dp, dn, q); in mpn_sbpi1_div_q() 103 cy1 = n0 < cy; in mpn_sbpi1_div_q() 104 n0 = (n0 - cy) & GMP_NUMB_MASK; in mpn_sbpi1_div_q() 105 cy = n1 < cy1; in mpn_sbpi1_div_q() 109 if (UNLIKELY (cy != 0)) in mpn_sbpi1_div_q() 129 cy = mpn_submul_1 (np - dn, dp, dn + 2, q); in mpn_sbpi1_div_q() 131 if (UNLIKELY (n1 != cy)) in mpn_sbpi1_div_q() 133 if (n1 < (cy & flag)) in mpn_sbpi1_div_q() 147 cy = mpn_submul_1 (np - dn, dp, dn, q); in mpn_sbpi1_div_q() [all …]
|
| H A D | toom62_mul.c | 69 mp_limb_t cy; in mpn_toom62_mul() local 119 cy = mpn_addlsh1_n (ash, a1, a0, n); in mpn_toom62_mul() 120 cy = 2*cy + mpn_addlsh1_n (ash, a2, ash, n); in mpn_toom62_mul() 121 cy = 2*cy + mpn_addlsh1_n (ash, a3, ash, n); in mpn_toom62_mul() 122 cy = 2*cy + mpn_addlsh1_n (ash, a4, ash, n); in mpn_toom62_mul() 127 ash[n] = 2*cy + mpn_lshift (ash + s, ash + s, n - s, 1); in mpn_toom62_mul() 131 ash[n] = 2*cy + mpn_addlsh1_n (ash, a5, ash, n); in mpn_toom62_mul() 133 cy = mpn_lshift (ash, a0, n, 1); in mpn_toom62_mul() 134 cy += mpn_add_n (ash, ash, a1, n); in mpn_toom62_mul() 135 cy = 2*cy + mpn_lshift (ash, ash, n, 1); in mpn_toom62_mul() [all …]
|
| H A D | toom42_mul.c | 73 mp_limb_t cy, vinf0; in mpn_toom42_mul() local 112 cy = mpn_addlsh1_n (as2, a2, a3, s); in mpn_toom42_mul() 114 cy = mpn_add_1 (as2 + s, a2 + s, n - s, cy); in mpn_toom42_mul() 115 cy = 2 * cy + mpn_addlsh1_n (as2, a1, as2, n); in mpn_toom42_mul() 116 cy = 2 * cy + mpn_addlsh1_n (as2, a0, as2, n); in mpn_toom42_mul() 118 cy = mpn_lshift (as2, a3, s, 1); in mpn_toom42_mul() 119 cy += mpn_add_n (as2, a2, as2, s); in mpn_toom42_mul() 121 cy = mpn_add_1 (as2 + s, a2 + s, n - s, cy); in mpn_toom42_mul() 122 cy = 2 * cy + mpn_lshift (as2, as2, n, 1); in mpn_toom42_mul() 123 cy += mpn_add_n (as2, a1, as2, n); in mpn_toom42_mul() [all …]
|
| H A D | sqr_basecase.c | 65 mp_limb_t cy; \ 67 cy = mpn_addlsh1_n (rp + 1, rp + 1, tp, 2 * n - 2); \ 68 rp[2 * n - 1] += cy; \ 73 mp_limb_t cy; \ 75 cy = mpn_lshift (tp, tp, 2 * n - 2, 1); \ 76 cy += mpn_add_n (rp + 1, rp + 1, tp, 2 * n - 2); \ 77 rp[2 * n - 1] += cy; \ 93 mp_limb_t cy; in mpn_sqr_basecase() local 113 cy = mpn_addmul_2s (tp + 2 * i, up + i + 1, n - (i + 1), up + i); in mpn_sqr_basecase() 114 tp[n + i] = cy; in mpn_sqr_basecase() [all …]
|
| H A D | toom_eval_pm2.c | 42 #define DO_addlsh2(d, a, b, n, cy) \ argument 44 (cy) <<= 2; \ 45 (cy) += mpn_addlsh2_n(d, a, b, n); \ 49 #define DO_addlsh2(d, a, b, n, cy) \ argument 51 (cy) <<= 2; \ 52 (cy) += mpn_addlsh_n(d, a, b, n, 2); \ 57 #define DO_addlsh2(d, a, b, n, cy) \ argument 59 (cy) <<= 2; \ 60 (cy) += mpn_lshift(d, b, n, 2); \ 61 (cy) += mpn_add_n(d, d, a, n); \ [all …]
|
| H A D | toom44_mul.c | 116 mp_limb_t cy; in mpn_toom44_mul() local 171 cy = mpn_addlsh1_n (apx, a1, a0, n); in mpn_toom44_mul() 172 cy = 2*cy + mpn_addlsh1_n (apx, a2, apx, n); in mpn_toom44_mul() 177 apx[n] = 2*cy + mpn_lshift (apx + s, apx + s, n - s, 1); in mpn_toom44_mul() 181 apx[n] = 2*cy + mpn_addlsh1_n (apx, a3, apx, n); in mpn_toom44_mul() 183 cy = mpn_lshift (apx, a0, n, 1); in mpn_toom44_mul() 184 cy += mpn_add_n (apx, apx, a1, n); in mpn_toom44_mul() 185 cy = 2*cy + mpn_lshift (apx, apx, n, 1); in mpn_toom44_mul() 186 cy += mpn_add_n (apx, apx, a2, n); in mpn_toom44_mul() 187 cy = 2*cy + mpn_lshift (apx, apx, n, 1); in mpn_toom44_mul() [all …]
|
| H A D | dcpi1_bdiv_qr.c | 65 mp_limb_t cy; in mpn_dcpi1_bdiv_qr_n() local 72 cy = mpn_sbpi1_bdiv_qr (qp, np, 2 * lo, dp, lo, dinv); in mpn_dcpi1_bdiv_qr_n() 74 cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, lo, dinv, tp); in mpn_dcpi1_bdiv_qr_n() 78 mpn_incr_u (tp + lo, cy); in mpn_dcpi1_bdiv_qr_n() 82 cy = mpn_sbpi1_bdiv_qr (qp + lo, np + lo, 2 * hi, dp, hi, dinv); in mpn_dcpi1_bdiv_qr_n() 84 cy = mpn_dcpi1_bdiv_qr_n (qp + lo, np + lo, dp, hi, dinv, tp); in mpn_dcpi1_bdiv_qr_n() 88 mpn_incr_u (tp + hi, cy); in mpn_dcpi1_bdiv_qr_n() 99 mp_limb_t rr, cy; in mpn_dcpi1_bdiv_qr() local 122 cy = mpn_sbpi1_bdiv_qr (qp, np, 2 * qn, dp, qn, dinv); in mpn_dcpi1_bdiv_qr() 124 cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, qn, dinv, tp); in mpn_dcpi1_bdiv_qr() [all …]
|
| H A D | toom_interpolate_16pts.c | 290 mp_limb_t cy; in mpn_toom_interpolate_16pts() local 304 cy = mpn_sub_n (r4, r4, r0, spt); in mpn_toom_interpolate_16pts() 305 MPN_DECR_U (r4 + spt, n3p1 - spt, cy); in mpn_toom_interpolate_16pts() 307 cy = DO_mpn_sublsh_n (r3, r0, spt, 14, wsi); in mpn_toom_interpolate_16pts() 308 MPN_DECR_U (r3 + spt, n3p1 - spt, cy); in mpn_toom_interpolate_16pts() 311 cy = DO_mpn_sublsh_n (r2, r0, spt, 28, wsi); in mpn_toom_interpolate_16pts() 312 MPN_DECR_U (r2 + spt, n3p1 - spt, cy); in mpn_toom_interpolate_16pts() 315 cy = DO_mpn_sublsh_n (r1 + BIT_CORRECTION, r0, spt, 42 - CORRECTION_BITS, wsi); in mpn_toom_interpolate_16pts() 317 cy = mpn_sub_1 (r1 + spt + BIT_CORRECTION, r1 + spt + BIT_CORRECTION, in mpn_toom_interpolate_16pts() 318 n3p1 - spt - BIT_CORRECTION, cy); in mpn_toom_interpolate_16pts() [all …]
|
| H A D | toom_interpolate_8pts.c | 135 mp_limb_signed_t cy; in mpn_toom_interpolate_8pts() local 143 cy = DO_mpn_sublsh_n (r3, r1, spt, 12, ws); in mpn_toom_interpolate_8pts() 144 MPN_DECR_U (r3 + spt, 3 * n + 1 - spt, cy); in mpn_toom_interpolate_8pts() 147 cy = DO_mpn_sublsh_n (r5, r1, spt, 6, ws); in mpn_toom_interpolate_8pts() 148 MPN_DECR_U (r5 + spt, 3 * n + 1 - spt, cy); in mpn_toom_interpolate_8pts() 151 cy = mpn_sub_n (r7, r7, r1, spt); in mpn_toom_interpolate_8pts() 152 MPN_DECR_U (r7 + spt, 3 * n + 1 - spt, cy); in mpn_toom_interpolate_8pts() 184 cy = mpn_add_n (pp + n, pp + n, r7, n); /* Hr8+Lr7-Lr5 */ in mpn_toom_interpolate_8pts() 185 cy-= mpn_sub_n (pp + n, pp + n, r5, n); in mpn_toom_interpolate_8pts() 186 if (cy > 0) { in mpn_toom_interpolate_8pts() [all …]
|
| H A D | dcpi1_div_qr.c | 47 mp_limb_t cy, qh, ql; in mpn_dcpi1_div_qr_n() local 59 cy = mpn_sub_n (np + lo, np + lo, tp, n); in mpn_dcpi1_div_qr_n() 61 cy += mpn_sub_n (np + n, np + n, dp, lo); in mpn_dcpi1_div_qr_n() 63 while (cy != 0) in mpn_dcpi1_div_qr_n() 66 cy -= mpn_add_n (np + lo, np + lo, dp, n); in mpn_dcpi1_div_qr_n() 76 cy = mpn_sub_n (np, np, tp, n); in mpn_dcpi1_div_qr_n() 78 cy += mpn_sub_n (np + lo, np + lo, dp, hi); in mpn_dcpi1_div_qr_n() 80 while (cy != 0) in mpn_dcpi1_div_qr_n() 83 cy -= mpn_add_n (np, np, dp, n); in mpn_dcpi1_div_qr_n() 96 mp_limb_t qh, cy; in mpn_dcpi1_div_qr() local [all …]
|
| H A D | mu_div_qr.c | 106 mp_limb_t cy, qh; in mpn_mu_div_qr() local 133 cy = mpn_add_n (scratch + qn, scratch + qn, dp, dn - (qn + 1)); in mpn_mu_div_qr() 135 cy = 0; in mpn_mu_div_qr() 136 scratch[dn - 1] = cy; in mpn_mu_div_qr() 138 cy = mpn_sub_n (rp, np, scratch, nn - (2 * qn + 1)); in mpn_mu_div_qr() 139 cy = mpn_sub_nc (rp + nn - (2 * qn + 1), in mpn_mu_div_qr() 142 qn + 1, cy); in mpn_mu_div_qr() 143 if (cy) in mpn_mu_div_qr() 167 mp_limb_t cy, qh; in mpn_mu_div_qr2() local 195 cy = mpn_add_1 (tp, dp + dn - (in + 1), in + 1, 1); in mpn_mu_div_qr2() [all …]
|
| H A D | toom32_mul.c | 72 mp_limb_t cy; in mpn_toom32_mul() local 118 cy = mpn_add_n_sub_n (ap1, am1, ap1, a1, n); in mpn_toom32_mul() 119 hi = ap1_hi - (cy & 1); in mpn_toom32_mul() 120 ap1_hi += (cy >> 1); in mpn_toom32_mul() 144 cy = mpn_add_n_sub_n (bp1, bm1, b1, b0, n); in mpn_toom32_mul() 149 cy = mpn_add_n_sub_n (bp1, bm1, b0, b1, n); in mpn_toom32_mul() 151 bp1_hi = cy >> 1; in mpn_toom32_mul() 186 cy = bp1_hi + mpn_add_n (v1 + n, v1 + n, bp1, n); in mpn_toom32_mul() 191 cy = 2 * bp1_hi + mpn_addlsh1_n (v1 + n, v1 + n, bp1, n); in mpn_toom32_mul() 193 cy = 2 * bp1_hi + mpn_addmul_1 (v1 + n, bp1, n, CNST_LIMB(2)); in mpn_toom32_mul() [all …]
|
| H A D | toom_interpolate_5pts.c | 45 mp_limb_t cy, saved; in mpn_toom_interpolate_5pts() local 130 cy = mpn_add_n (c1, c1, vm1, kk1); in mpn_toom_interpolate_5pts() 131 MPN_INCR_U (c3 + 1, twor + k - 1, cy); /* 2n-(3k+1) = 2r+k-1 */ in mpn_toom_interpolate_5pts() 139 cy = mpn_sublsh1_n_ip1 (v2, vinf, twor); in mpn_toom_interpolate_5pts() 142 cy = mpn_lshift (vm1, vinf, twor, 1); in mpn_toom_interpolate_5pts() 143 cy += mpn_sub_n (v2, v2, vm1, twor); in mpn_toom_interpolate_5pts() 145 MPN_DECR_U (v2 + twor, kk1 - twor, cy); in mpn_toom_interpolate_5pts() 167 cy = mpn_add_n (vinf, vinf, v2 + k, k + 1); in mpn_toom_interpolate_5pts() 168 MPN_INCR_U (c3 + kk1, twor - k - 1, cy); /* 2n-(5k+1) = 2r-k-1 */ in mpn_toom_interpolate_5pts() 176 cy = mpn_sub_n (v1, v1, vinf, twor); /* vinf is at most twor long. */ in mpn_toom_interpolate_5pts() [all …]
|
| H A D | sbpi1_divappr_q.c | 53 mp_limb_t cy, cy1; in mpn_sbpi1_divappr_q() local 98 cy = mpn_submul_1 (np - dn, dp, dn, q); in mpn_sbpi1_divappr_q() 100 cy1 = n0 < cy; in mpn_sbpi1_divappr_q() 101 n0 = (n0 - cy) & GMP_NUMB_MASK; in mpn_sbpi1_divappr_q() 102 cy = n1 < cy1; in mpn_sbpi1_divappr_q() 106 if (UNLIKELY (cy != 0)) in mpn_sbpi1_divappr_q() 126 cy = mpn_submul_1 (np - dn, dp, dn + 2, q); in mpn_sbpi1_divappr_q() 128 if (UNLIKELY (n1 != cy)) in mpn_sbpi1_divappr_q() 130 if (n1 < (cy & flag)) in mpn_sbpi1_divappr_q() 144 cy = mpn_submul_1 (np - dn, dp, dn, q); in mpn_sbpi1_divappr_q() [all …]
|
| H A D | strongfibo.c | 121 mp_limb_t cy; in mpn_lucm() local 136 cy = mpn_rsblsh1_n (lp, lp, scratch, mn); /* L[n] = +/-(2F[n-1]-(-F[n])) */ in mpn_lucm() 138 cy = mpn_sublsh1_n (lp, lp, scratch, mn); /* L[n] = -/+(F[n]-(-2F[n-1])) */ in mpn_lucm() 139 if (cy != 0) in mpn_lucm() 140 cy = mpn_add_n (lp, lp, mp, mn) - cy; in mpn_lucm() 142 if (cy > 1) in mpn_lucm() 143 cy += mpn_add_n (lp, lp, mp, mn); in mpn_lucm() 145 cy = mpn_lshift (scratch, scratch, mn, 1); /* 2F[n-1] */ in mpn_lucm() 146 if (UNLIKELY (cy)) in mpn_lucm() 147 cy -= mpn_sub_n (lp, scratch, lp, mn); /* L[n] = +/-(2F[n-1]-(-F[n])) */ in mpn_lucm() [all …]
|
| /netbsd-src/external/bsd/tmux/dist/ |
| H A D | grid-reader.c | 24 grid_reader_start(struct grid_reader *gr, struct grid *gd, u_int cx, u_int cy) in grid_reader_start() argument 28 gr->cy = cy; in grid_reader_start() 33 grid_reader_get_cursor(struct grid_reader *gr, u_int *cx, u_int *cy) in grid_reader_get_cursor() argument 36 *cy = gr->cy; in grid_reader_get_cursor() 43 return (grid_line_length(gr->gd, gr->cy)); in grid_reader_line_length() 58 if (wrap && gr->cx >= px && gr->cy < gr->gd->hsize + gr->gd->sy - 1) { in grid_reader_cursor_right() 64 grid_get_cell(gr->gd, gr->cx, gr->cy, &gc); in grid_reader_cursor_right() 79 grid_get_cell(gr->gd, gr->cx, gr->cy, &gc); in grid_reader_cursor_left() 84 if (gr->cx == 0 && gr->cy > 0 && in grid_reader_cursor_left() 86 grid_get_line(gr->gd, gr->cy - 1)->flags & GRID_LINE_WRAPPED)) { in grid_reader_cursor_left() [all …]
|
| /netbsd-src/external/lgpl3/gmp/dist/mpz/ |
| H A D | aorsmul_i.c | 74 mp_limb_t cy; in mpz_aorsmul_1() local 89 cy = mpn_mul_1 (wp, PTR(x), xsize, y); in mpz_aorsmul_1() 90 wp[xsize] = cy; in mpz_aorsmul_1() 91 xsize += (cy != 0); in mpz_aorsmul_1() 108 cy = mpn_addmul_1 (wp, xp, min_size, y); in mpz_aorsmul_1() 115 cy = mpn_mul_1c (wp, xp, dsize, y, cy); in mpz_aorsmul_1() 119 cy = mpn_add_1 (wp, wp, dsize, cy); in mpz_aorsmul_1() 132 cy = cy2 + mpn_add_1 (wp, wp, dsize, cy); in mpz_aorsmul_1() 136 wp[dsize] = cy; in mpz_aorsmul_1() 137 new_wsize += (cy != 0); in mpz_aorsmul_1() [all …]
|
| /netbsd-src/external/lgpl3/gmp/dist/mpn/powerpc64/mode64/p9/ |
| H A D | sqr_basecase.asm | 66 li cy, 0 67 addze cy, cy 71 add u0, u0, cy 73 li cy, 0 74 addze cy, cy 78 add u0, u0, cy 83 add u0, u0, cy 92 subfe cy, cy, cy 95 subfic cy, cy, 0 98 subfe cy, cy, cy [all …]
|