Searched refs:tmpc (Results 1 - 12 of 12) sorted by relevance

/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_add_d.c23 mp_digit *tmpa, *tmpc, mu; local
59 tmpc = c->dp;
66 *tmpc = *tmpa++ + b;
67 mu = *tmpc >> DIGIT_BIT;
68 *tmpc++ &= MP_MASK;
72 *tmpc = *tmpa++ + mu;
73 mu = *tmpc >> DIGIT_BIT;
74 *tmpc++ &= MP_MASK;
78 *tmpc++ = mu;
88 *tmpc
[all...]
H A Dbn_mp_sub_d.c22 mp_digit *tmpa, *tmpc, mu; local
49 tmpc = c->dp;
54 *tmpc++ = b - *tmpa;
56 *tmpc++ = b;
69 *tmpc = *tmpa++ - b;
70 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1);
71 *tmpc++ &= MP_MASK;
75 *tmpc = *tmpa++ - mu;
76 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1);
77 *tmpc
[all...]
H A Dbn_s_mp_add.c50 register mp_digit u, *tmpa, *tmpb, *tmpc; local
62 tmpc = c->dp;
68 *tmpc = *tmpa++ + *tmpb++ + u;
71 u = *tmpc >> ((mp_digit)DIGIT_BIT);
74 *tmpc++ &= MP_MASK;
83 *tmpc = x->dp[i] + u;
86 u = *tmpc >> ((mp_digit)DIGIT_BIT);
89 *tmpc++ &= MP_MASK;
94 *tmpc++ = u;
98 *tmpc
[all...]
H A Dbn_s_mp_sub.c38 register mp_digit u, *tmpa, *tmpb, *tmpc; local
44 tmpc = c->dp;
50 *tmpc = *tmpa++ - *tmpb++ - u;
57 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
60 *tmpc++ &= MP_MASK;
66 *tmpc = *tmpa++ - u;
69 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
72 *tmpc++ &= MP_MASK;
77 *tmpc++ = 0;
H A Dbn_mp_mul_d.c22 mp_digit u, *tmpa, *tmpc; local
43 tmpc = c->dp;
54 *tmpc++ = (mp_digit) (r & ((mp_word) MP_MASK));
61 *tmpc++ = u;
66 *tmpc++ = 0;
H A Dbn_mp_div_2d.c61 register mp_digit *tmpc, mask, shift; local
70 tmpc = c->dp + (c->used - 1);
76 rr = *tmpc & mask;
79 *tmpc = (*tmpc >> D) | (r << shift);
80 --tmpc;
H A Dbn_mp_mul_2d.c47 register mp_digit *tmpc, shift, mask, r, rr; local
57 tmpc = c->dp;
63 rr = (*tmpc >> shift) & mask;
66 *tmpc = ((*tmpc << d) | r) & MP_MASK;
67 ++tmpc;
H A Dbn_fast_s_mp_mul_digs.c88 register mp_digit *tmpc; local
89 tmpc = c->dp;
92 *tmpc++ = W[ix];
97 *tmpc++ = 0;
H A Dbn_fast_s_mp_mul_high_digs.c78 register mp_digit *tmpc; local
80 tmpc = c->dp + digs;
83 *tmpc++ = W[ix];
88 *tmpc++ = 0;
H A Dtommath.tex1742 with the final carry being stored in $tmpc$ (line 94). Note the ``++'' operator within the same expression.
1743 After line 94, $tmpc$ will point to the $c.used$'th digit of the mp\_int $c$. This is useful
1834 within this algorithm. The aliases $tmpa$, $tmpb$ and $tmpc$ are initialized
5607 read from the source. This function uses pointer aliases $tmpa$ and $tmpc$ for the digits of $a$ and $c$ respectively.
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rc5/asm/
H A Drc5-586.pl17 $tmpc="ecx";
57 &mov($tmpc, $B);
63 &mov($tmpc, $A);
84 &mov($tmpc, $A);
90 &mov($tmpc, $B);
/barrelfish-2018-10-04/lib/tommath/pre_gen/
H A Dmpi.c468 register mp_digit *tmpc; local
469 tmpc = c->dp;
472 *tmpc++ = W[ix];
477 *tmpc++ = 0;
569 register mp_digit *tmpc; local
571 tmpc = c->dp + digs;
574 *tmpc++ = W[ix];
579 *tmpc++ = 0;
890 mp_digit *tmpa, *tmpc, mu; local
926 tmpc
1984 register mp_digit *tmpc, mask, shift; local
5123 register mp_digit *tmpc, shift, mask, r, rr; local
5187 mp_digit u, *tmpa, *tmpc; local
7550 mp_digit *tmpa, *tmpc, mu; local
8804 register mp_digit u, *tmpa, *tmpb, *tmpc; local
9428 register mp_digit u, *tmpa, *tmpb, *tmpc; local
[all...]

Completed in 177 milliseconds