Home | History | Annotate | Download | only in libtommath

Lines Matching refs:tmpc

23   mp_digit *tmpa, *tmpc, mu;
59 tmpc = c->dp;
66 *tmpc = *tmpa++ + b;
67 mu = *tmpc >> DIGIT_BIT;
68 *tmpc++ &= MP_MASK;
72 *tmpc = *tmpa++ + mu;
73 mu = *tmpc >> DIGIT_BIT;
74 *tmpc++ &= MP_MASK;
78 *tmpc++ = mu;
88 *tmpc++ = b - a->dp[0];
90 *tmpc++ = b;
101 *tmpc++ = 0;