Lines Matching defs:tmpc
237 register mp_digit u, *tmpa, *tmpb, *tmpc;
249 tmpc = c->dp;
255 *tmpc = *tmpa++ + *tmpb++ + u;
258 u = *tmpc >> ((mp_digit)DIGIT_BIT);
261 *tmpc++ &= MP_MASK;
270 *tmpc = x->dp[i] + u;
273 u = *tmpc >> ((mp_digit)DIGIT_BIT);
276 *tmpc++ &= MP_MASK;
281 *tmpc++ = u;
285 *tmpc++ = 0;
313 register mp_digit u, *tmpa, *tmpb, *tmpc;
319 tmpc = c->dp;
325 *tmpc = *tmpa++ - *tmpb++ - u;
332 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
335 *tmpc++ &= MP_MASK;
341 *tmpc = *tmpa++ - u;
344 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
347 *tmpc++ &= MP_MASK;
352 *tmpc++ = 0;
1051 register mp_digit *tmpc, mask, shift;
1060 tmpc = c->dp + (c->used - 1);
1066 rr = *tmpc & mask;
1069 *tmpc = (*tmpc >> D) | (r << shift);
1070 --tmpc;
1396 register mp_digit *tmpc, shift, mask, r, rr;
1406 tmpc = c->dp;
1412 rr = (*tmpc >> shift) & mask;
1415 *tmpc = ((*tmpc << d) | r) & MP_MASK;
1416 ++tmpc;
2462 register mp_digit *tmpc;
2463 tmpc = c->dp;
2466 *tmpc++ = W[ix];
2471 *tmpc++ = 0;
3328 mp_digit u, *tmpa, *tmpc;
3349 tmpc = c->dp;
3360 *tmpc++ = (mp_digit) (r & ((mp_word) MP_MASK));
3367 *tmpc++ = u;
3372 *tmpc++ = 0;