Searched refs:tmpa (Results 1 - 15 of 15) sorted by relevance

/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_cmp_mag.c24 mp_digit *tmpa, *tmpb; local
36 tmpa = a->dp + (a->used - 1);
42 for (n = 0; n < a->used; ++n, --tmpa, --tmpb) {
43 if (*tmpa > *tmpb) {
47 if (*tmpa < *tmpb) {
H A Dbn_mp_copy.c40 register mp_digit *tmpa, *tmpb; local
45 tmpa = a->dp;
52 *tmpb++ = *tmpa++;
H A Dbn_mp_div_2.c35 register mp_digit r, rr, *tmpa, *tmpb; local
38 tmpa = a->dp + b->used - 1;
47 rr = *tmpa & 1;
50 *tmpb-- = (*tmpa-- >> 1) | (r << (DIGIT_BIT - 1));
H A Dbn_mp_mul_2.c36 register mp_digit r, rr, *tmpa, *tmpb; local
39 tmpa = a->dp;
51 rr = *tmpa >> ((mp_digit)(DIGIT_BIT - 1));
54 *tmpb++ = ((*tmpa++ << ((mp_digit)1)) | r) & MP_MASK;
H A Dbn_mp_sub_d.c24 mp_digit *tmpa, *tmpc, mu; local
50 tmpa = a->dp;
56 *tmpc++ = b - *tmpa;
71 *tmpc = *tmpa++ - b;
77 *tmpc = *tmpa++ - mu;
H A Dbn_mp_mul_d.c24 mp_digit u, *tmpa, *tmpc; local
42 tmpa = a->dp;
53 r = ((mp_word) u) + ((mp_word)*tmpa++) * ((mp_word)b);
H A Dbn_mp_add_d.c25 mp_digit *tmpa, *tmpc, mu; local
58 tmpa = a->dp;
68 *tmpc = *tmpa++ + b;
74 *tmpc = *tmpa++ + mu;
H A Dbn_s_mp_sub.c40 register mp_digit u, *tmpa, *tmpb, *tmpc; local
44 tmpa = a->dp;
52 *tmpc = *tmpa++ - *tmpb++ - u;
68 *tmpc = *tmpa++ - u;
H A Dbn_s_mp_add.c52 register mp_digit u, *tmpa, *tmpb, *tmpc; local
58 tmpa = a->dp;
70 *tmpc = *tmpa++ + *tmpb++ + u;
H A Dbn_mp_karatsuba_mul.c88 register mp_digit *tmpa, *tmpb, *tmpx, *tmpy; local
93 tmpa = a->dp;
99 *tmpx++ = *tmpa++;
105 *tmpx++ = *tmpa++;
H A Dtommath.tex1191 simplify the inner loop that copies the digits from $a$ to $b$, two aliases $tmpa$ and $tmpb$ point directly at the digits
1213 mp_digit *tmpa;
1834 within this algorithm. The aliases $tmpa$, $tmpb$ and $tmpc$ are initialized
5607 read from the source. This function uses pointer aliases $tmpa$ and $tmpc$ for the digits of $a$ and $c$ respectively.
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dadd1sp.c34 mpfr_t tmpa, tmpb, tmpc; local
37 mpfr_init2 (tmpa, MPFR_PREC (a));
47 inexact2 = mpfr_add1 (tmpa, tmpb, tmpc, rnd_mode);
50 if (mpfr_cmp (tmpa, a) || inexact != inexact2)
60 mpfr_fprint_binary (stderr, tmpa);
67 mpfr_clears (tmpa, tmpb, tmpc, (mpfr_ptr) 0);
H A Dsub1sp.c34 mpfr_t tmpa, tmpb, tmpc; local
37 mpfr_init2 (tmpa, MPFR_PREC (a));
47 inexact2 = mpfr_sub1 (tmpa, tmpb, tmpc, rnd_mode);
50 if (mpfr_cmp (tmpa, a) || inexact != inexact2)
60 mpfr_fprint_binary (stderr, tmpa);
67 mpfr_clears (tmpa, tmpb, tmpc, (mpfr_ptr) 0);
/netbsd-6-1-5-RELEASE/external/lgpl2/mpc/dist/src/
H A Ddiv.c210 mpc_t tmpa; local
211 mpc_ptr dest = (overlap) ? tmpa : a;
214 mpc_init3 (tmpa, MPC_PREC_RE (a), MPC_PREC_IM (a));
225 if a and tmpa have been allocated using different methods, since
226 it will swap the significands of a and tmpa. See http://
228 mpc_set (a, tmpa, MPC_RNDNN); /* exact */
229 mpc_clear (tmpa);
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/tls/
H A Dlibtommath.c237 register mp_digit u, *tmpa, *tmpb, *tmpc; local
243 tmpa = a->dp;
255 *tmpc = *tmpa++ + *tmpb++ + u;
313 register mp_digit u, *tmpa, *tmpb, *tmpc; local
317 tmpa = a->dp;
325 *tmpc = *tmpa++ - *tmpb++ - u;
341 *tmpc = *tmpa++ - u;
914 mp_digit *tmpa, *tmpb; local
926 tmpa = a->dp + (a->used - 1);
932 for (n = 0; n < a->used; ++n, --tmpa,
1131 register mp_digit *tmpa, *tmpb; local
1333 register mp_digit r, rr, *tmpa, *tmpb; local
2843 register mp_digit r, rr, *tmpa, *tmpb; local
3328 mp_digit u, *tmpa, *tmpc; local
[all...]

Completed in 204 milliseconds