Lines Matching defs:tmpc
242 register mp_digit u, *tmpa, *tmpb, *tmpc;
254 tmpc = c->dp;
260 *tmpc = *tmpa++ + *tmpb++ + u;
263 u = *tmpc >> ((mp_digit)DIGIT_BIT);
266 *tmpc++ &= MP_MASK;
275 *tmpc = x->dp[i] + u;
278 u = *tmpc >> ((mp_digit)DIGIT_BIT);
281 *tmpc++ &= MP_MASK;
286 *tmpc++ = u;
290 *tmpc++ = 0;
318 register mp_digit u, *tmpa, *tmpb, *tmpc;
324 tmpc = c->dp;
330 *tmpc = *tmpa++ - *tmpb++ - u;
337 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
340 *tmpc++ &= MP_MASK;
346 *tmpc = *tmpa++ - u;
349 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
352 *tmpc++ &= MP_MASK;
357 *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;
2473 register mp_digit *tmpc;
2474 tmpc = c->dp;
2477 *tmpc++ = W[ix];
2482 *tmpc++ = 0;
3340 mp_digit u, *tmpa, *tmpc;
3361 tmpc = c->dp;
3372 *tmpc++ = (mp_digit) (r & ((mp_word) MP_MASK));
3379 *tmpc++ = u;
3384 *tmpc++ = 0;