HomeSort by: relevance | last modified time | path
    Searched refs:mpn_lshift (Results 1 - 25 of 157) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/gpl3/gcc/dist/libquadmath/printf/
lshift.c 0 /* mpn_lshift -- Shift left low level.
36 mpn_lshift (register mp_ptr wp, function
40 mpn_lshift (wp, up, usize, cnt)
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
lshift.c 0 /* mpn_lshift -- Shift left low level.
36 mpn_lshift (register mp_ptr wp, function
40 mpn_lshift (wp, up, usize, cnt)
  /src/external/lgpl3/gmp/dist/mpn/generic/
toom_eval_pm2exp.c 66 tp[n] = mpn_lshift (tp, xp+n, n, shift);
82 xp2[n] = mpn_lshift (tp, xp+2*n, n, 2*shift);
86 xp2[n] += mpn_lshift (tp, xp + i*n, n, i*shift);
90 tp[n] = mpn_lshift (tp, xp+n, n, shift);
93 tp[n] += mpn_lshift (xm2, xp + i*n, n, i*shift);
97 xm2[hn] = mpn_lshift (xm2, xp + k*n, hn, k*shift);
toom_eval_dgr3_pm2.c 66 cy = mpn_lshift (tp, xp + 2*n, n, 2);
69 tp[x3n] = mpn_lshift (tp, xp + 3*n, x3n, 2);
75 mpn_lshift (tp, tp, n+1, 1);
toom44_mul.c 177 apx[n] = 2*cy + mpn_lshift (apx + s, apx + s, n - s, 1);
183 cy = mpn_lshift (apx, a0, n, 1);
185 cy = 2*cy + mpn_lshift (apx, apx, n, 1);
187 cy = 2*cy + mpn_lshift (apx, apx, n, 1);
199 bpx[n] = 2*cy + mpn_lshift (bpx + t, bpx + t, n - t, 1);
205 cy = mpn_lshift (bpx, b0, n, 1);
207 cy = 2*cy + mpn_lshift (bpx, bpx, n, 1);
209 cy = 2*cy + mpn_lshift (bpx, bpx, n, 1);
toom_eval_pm2.c 60 (cy) += mpn_lshift(d, b, n, 2); \
102 ASSERT_NOCARRY(mpn_lshift (tp , tp , n + 1, 1));
104 ASSERT_NOCARRY(mpn_lshift (xp2, xp2, n + 1, 1));
toom_eval_pm2rexp.c 50 __cy = mpn_lshift(ws,src,n,s);
69 rp[n] = mpn_lshift(rp, ap, n, s*q);
70 ws[n] = mpn_lshift(ws, ap+n, n, s*(q-1));
lshift.c 0 /* mpn_lshift -- Shift left low level.
43 mpn_lshift (mp_ptr rp, mp_srcptr up, mp_size_t n, unsigned int cnt) function
toom4_sqr.c 135 apx[n] = 2*cy + mpn_lshift (apx + s, apx + s, n - s, 1);
141 cy = mpn_lshift (apx, a0, n, 1);
143 cy = 2*cy + mpn_lshift (apx, apx, n, 1);
145 cy = 2*cy + mpn_lshift (apx, apx, n, 1);
sec_div.c 89 mpn_lshift (dp2, dp, dn, cnt);
92 cy = mpn_lshift (np2, np, nn, cnt);
toom53_mul.c 125 ash[n] = 2*cy + mpn_lshift (ash + s, ash + s, n - s, 1);
131 cy = mpn_lshift (ash, a0, n, 1);
133 cy = 2*cy + mpn_lshift (ash, ash, n, 1);
135 cy = 2*cy + mpn_lshift (ash, ash, n, 1);
137 cy = 2*cy + mpn_lshift (ash, ash, n, 1);
181 cy = mpn_lshift (gp, b2, t, 2);
186 gp[n] = mpn_lshift (gp, b1, n, 1);
218 bsh[n] = 2*cy + mpn_lshift (bsh + t, bsh + t, n - t, 1);
224 cy = mpn_lshift (bsh, b0, n, 1);
226 cy = 2*cy + mpn_lshift (bsh, bsh, n, 1)
    [all...]
tdiv_qr.c 84 cy = mpn_lshift (n2p, np, nn, cnt);
125 mpn_lshift (d2p, dp, dn, cnt);
127 cy = mpn_lshift (n2p, np, nn, cnt);
230 mpn_lshift (d2p, dp + in, qn, cnt);
234 cy = mpn_lshift (n2p, np + nn - 2 * qn, 2 * qn, cnt);
333 cy1 = mpn_lshift (n2p, n2p, rn, GMP_NUMB_BITS - cnt);
toom62_mul.c 127 ash[n] = 2*cy + mpn_lshift (ash + s, ash + s, n - s, 1);
133 cy = mpn_lshift (ash, a0, n, 1);
135 cy = 2*cy + mpn_lshift (ash, ash, n, 1);
137 cy = 2*cy + mpn_lshift (ash, ash, n, 1);
139 cy = 2*cy + mpn_lshift (ash, ash, n, 1);
141 cy = 2*cy + mpn_lshift (ash, ash, n, 1);
sec_pi1_div.c 109 hp[dn] = mpn_lshift (hp, dp, dn, GMP_NUMB_BITS / 2);
165 qh = mpn_lshift (qhp, qhp, nn - dn, GMP_NUMB_BITS/2);
  /src/external/lgpl3/gmp/dist/mpn/cray/
lshift.c 0 /* mpn_lshift -- Shift left low level for Cray vector processors.
35 mpn_lshift (mp_ptr wp, mp_srcptr up, mp_size_t n, unsigned int cnt) function
  /src/external/lgpl3/gmp/dist/mpz/
lucnum2_ui.c 76 c = mpn_lshift (lp, f1p, size, 1);
86 c = mpn_lshift (l1p, l1p, size, 1);
fib_ui.c 91 xp[size] = mpn_lshift (xp, xp, size, 1);
100 c2 = mpn_lshift (fp, xp, size, 1);
139 c = mpn_lshift (yp, yp, size, 1);
mul_2exp.c 57 rlimb = mpn_lshift (rp + limb_cnt, up, un, cnt);
67 mpn_lshift, not to lose for U == R. */
  /src/external/lgpl3/mpfr/dist/src/
urandomb.c 70 mpn_lshift (rp, rp, nlimbs, cnt);
100 mpn_lshift (rp + k, rp, nlimbs, cnt);
mpn_exp.c 151 mpn_lshift (a, c + n, n, 1);
152 a[0] |= mpn_lshift (c + n - 1, c + n - 1, 1, 1);
171 mpn_lshift (a, c + n, n, 1);
172 a[0] |= mpn_lshift (c + n - 1, c + n - 1, 1, 1);
set_f.c 62 mpn_lshift (tmp, mx, sx, cnt);
76 mpn_lshift (my + sy - sx, mx, sx, cnt);
  /src/external/lgpl3/gmp/dist/mpf/
urandomb.c 58 mpn_lshift (rp, rp, nlimbs, GMP_NUMB_BITS - nbits % GMP_NUMB_BITS);
  /src/external/lgpl3/gmp/dist/mpn/mips32/
lshift.asm 1 dnl MIPS32 mpn_lshift -- Left shift.
40 PROLOGUE(mpn_lshift)
99 EPILOGUE(mpn_lshift)
  /src/external/lgpl3/gmp/dist/mpn/mips64/
lshift.asm 1 dnl MIPS64 mpn_lshift -- Left shift.
40 PROLOGUE(mpn_lshift)
99 EPILOGUE(mpn_lshift)
  /src/external/lgpl3/gmp/dist/mpn/power/
lshift.asm 1 dnl IBM POWER mpn_lshift -- Shift a number left.
41 PROLOGUE(mpn_lshift)
61 EPILOGUE(mpn_lshift)

Completed in 39 milliseconds

1 2 3 4 5 6 7