Lines Matching refs:tmpc
245 register mp_digit u, *tmpa, *tmpb, *tmpc;
257 tmpc = c->dp;
263 *tmpc = *tmpa++ + *tmpb++ + u;
266 u = *tmpc >> ((mp_digit)DIGIT_BIT);
269 *tmpc++ &= MP_MASK;
278 *tmpc = x->dp[i] + u;
281 u = *tmpc >> ((mp_digit)DIGIT_BIT);
284 *tmpc++ &= MP_MASK;
289 *tmpc++ = u;
293 *tmpc++ = 0;
321 register mp_digit u, *tmpa, *tmpb, *tmpc;
327 tmpc = c->dp;
333 *tmpc = *tmpa++ - *tmpb++ - u;
340 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
343 *tmpc++ &= MP_MASK;
349 *tmpc = *tmpa++ - u;
352 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
355 *tmpc++ &= MP_MASK;
360 *tmpc++ = 0;
1059 register mp_digit *tmpc, mask, shift;
1068 tmpc = c->dp + (c->used - 1);
1074 rr = *tmpc & mask;
1077 *tmpc = (*tmpc >> D) | (r << shift);
1078 --tmpc;
1404 register mp_digit *tmpc, shift, mask, r, rr;
1414 tmpc = c->dp;
1420 rr = (*tmpc >> shift) & mask;
1423 *tmpc = ((*tmpc << d) | r) & MP_MASK;
1424 ++tmpc;
2470 register mp_digit *tmpc;
2471 tmpc = c->dp;
2474 *tmpc++ = W[ix];
2479 *tmpc++ = 0;
3336 mp_digit u, *tmpa, *tmpc;
3357 tmpc = c->dp;
3368 *tmpc++ = (mp_digit) (r & ((mp_word) MP_MASK));
3375 *tmpc++ = u;
3380 *tmpc++ = 0;