Home | History | Annotate | Download | only in tls

Lines Matching refs:tmpc

250     register mp_digit u, *tmpa, *tmpb, *tmpc;
262 tmpc = c->dp;
268 *tmpc = *tmpa++ + *tmpb++ + u;
271 u = *tmpc >> ((mp_digit)DIGIT_BIT);
274 *tmpc++ &= MP_MASK;
283 *tmpc = x->dp[i] + u;
286 u = *tmpc >> ((mp_digit)DIGIT_BIT);
289 *tmpc++ &= MP_MASK;
294 *tmpc++ = u;
298 *tmpc++ = 0;
326 register mp_digit u, *tmpa, *tmpb, *tmpc;
332 tmpc = c->dp;
338 *tmpc = *tmpa++ - *tmpb++ - u;
345 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
348 *tmpc++ &= MP_MASK;
354 *tmpc = *tmpa++ - u;
357 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
360 *tmpc++ &= MP_MASK;
365 *tmpc++ = 0;
1067 register mp_digit *tmpc, mask, shift;
1076 tmpc = c->dp + (c->used - 1);
1082 rr = *tmpc & mask;
1085 *tmpc = (*tmpc >> D) | (r << shift);
1086 --tmpc;
1412 register mp_digit *tmpc, shift, mask, r, rr;
1422 tmpc = c->dp;
1428 rr = (*tmpc >> shift) & mask;
1431 *tmpc = ((*tmpc << d) | r) & MP_MASK;
1432 ++tmpc;
2481 register mp_digit *tmpc;
2482 tmpc = c->dp;
2485 *tmpc++ = W[ix];
2490 *tmpc++ = 0;
3348 mp_digit u, *tmpa, *tmpc;
3369 tmpc = c->dp;
3380 *tmpc++ = (mp_digit) (r & ((mp_word) MP_MASK));
3387 *tmpc++ = u;
3392 *tmpc++ = 0;