Lines Matching refs:_W
2431 register mp_word _W; in fast_s_mp_mul_digs() local
2444 _W = 0; in fast_s_mp_mul_digs()
2465 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_digs()
2470 W[ix] = ((mp_digit)_W) & MP_MASK; in fast_s_mp_mul_digs()
2473 _W = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_mul_digs()
2720 register mp_word *_W; in fast_mp_montgomery_reduce() local
2724 _W = W; in fast_mp_montgomery_reduce()
2731 *_W++ = *tmpx++; in fast_mp_montgomery_reduce()
2736 *_W++ = 0; in fast_mp_montgomery_reduce()
2770 register mp_word *_W; in fast_mp_montgomery_reduce() local
2776 _W = W + ix; in fast_mp_montgomery_reduce()
2780 *_W++ += ((mp_word)mu) * ((mp_word)*tmpn++); in fast_mp_montgomery_reduce()
2794 register mp_word *_W, *_W1; in fast_mp_montgomery_reduce() local
2802 _W = W + ++ix; in fast_mp_montgomery_reduce()
2805 *_W++ += *_W1++ >> ((mp_word) DIGIT_BIT); in fast_mp_montgomery_reduce()
2819 _W = W + n->used; in fast_mp_montgomery_reduce()
2822 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK)); in fast_mp_montgomery_reduce()
3276 mp_word _W; in fast_s_mp_sqr() local
3280 _W = 0; in fast_s_mp_sqr()
3303 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_sqr()
3307 _W = _W + _W + W1; in fast_s_mp_sqr()
3311 _W += ((mp_word)a->dp[ix>>1])*((mp_word)a->dp[ix>>1]); in fast_s_mp_sqr()
3315 W[ix] = (mp_digit)(_W & MP_MASK); in fast_s_mp_sqr()
3318 W1 = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_sqr()