Lines Matching refs:_W
2430 register mp_word _W; in fast_s_mp_mul_digs() local
2443 _W = 0; in fast_s_mp_mul_digs()
2464 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_digs()
2469 W[ix] = ((mp_digit)_W) & MP_MASK; in fast_s_mp_mul_digs()
2472 _W = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_mul_digs()
2719 register mp_word *_W; in fast_mp_montgomery_reduce() local
2723 _W = W; in fast_mp_montgomery_reduce()
2730 *_W++ = *tmpx++; in fast_mp_montgomery_reduce()
2735 *_W++ = 0; in fast_mp_montgomery_reduce()
2769 register mp_word *_W; in fast_mp_montgomery_reduce() local
2775 _W = W + ix; in fast_mp_montgomery_reduce()
2779 *_W++ += ((mp_word)mu) * ((mp_word)*tmpn++); in fast_mp_montgomery_reduce()
2793 register mp_word *_W, *_W1; in fast_mp_montgomery_reduce() local
2801 _W = W + ++ix; in fast_mp_montgomery_reduce()
2804 *_W++ += *_W1++ >> ((mp_word) DIGIT_BIT); in fast_mp_montgomery_reduce()
2818 _W = W + n->used; in fast_mp_montgomery_reduce()
2821 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK)); in fast_mp_montgomery_reduce()
3275 mp_word _W; in fast_s_mp_sqr() local
3279 _W = 0; in fast_s_mp_sqr()
3302 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_sqr()
3306 _W = _W + _W + W1; in fast_s_mp_sqr()
3310 _W += ((mp_word)a->dp[ix>>1])*((mp_word)a->dp[ix>>1]); in fast_s_mp_sqr()
3314 W[ix] = (mp_digit)(_W & MP_MASK); in fast_s_mp_sqr()
3317 W1 = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_sqr()