Home | History | Annotate | Download | only in tls

Lines Matching refs:tmpx

606      mp_int tmpG, tmpX;
619 if ((err = mp_init(&tmpX)) != MP_OKAY) {
623 if ((err = mp_abs(X, &tmpX)) != MP_OKAY) {
624 mp_clear_multi(&tmpG, &tmpX, NULL);
629 err = mp_exptmod(&tmpG, &tmpX, P, Y);
630 mp_clear_multi(&tmpG, &tmpX, NULL);
2347 mp_digit tmpx, *tmpt, *tmpy;
2374 tmpx = a->dp[ix];
2386 ((mp_word)tmpx) * ((mp_word)*tmpy++) +
2447 mp_digit *tmpx, *tmpy;
2454 tmpx = a->dp + tx;
2464 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--);
2532 mp_digit u, tmpx, *tmpt;
2555 tmpx = a->dp[ix];
2562 r = ((mp_word)tmpx) * ((mp_word)a->dp[iy]);
2599 mp_digit tmpx, *tmpt, *tmpy;
2621 tmpx = a->dp[ix];
2632 ((mp_word)tmpx) * ((mp_word)*tmpy++) +
2720 register mp_digit *tmpx;
2726 tmpx = x->dp;
2730 *_W++ = *tmpx++;
2792 register mp_digit *tmpx;
2815 tmpx = x->dp;
2821 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK));
2828 *tmpx++ = 0;
3248 * you do like mult except the offset of the tmpx [one that
3260 mp_digit W[MP_WARRAY], *tmpx;
3286 tmpx = a->dp + tx;
3302 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--);