Lines Matching refs:_W
2460 register mp_word _W; in fast_s_mp_mul_digs() local
2473 _W = 0; in fast_s_mp_mul_digs()
2494 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_digs()
2499 W[ix] = ((mp_digit)_W) & MP_MASK; in fast_s_mp_mul_digs()
2502 _W = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_mul_digs()
2752 register mp_word *_W; in fast_mp_montgomery_reduce() local
2756 _W = W; in fast_mp_montgomery_reduce()
2763 *_W++ = *tmpx++; in fast_mp_montgomery_reduce()
2768 *_W++ = 0; in fast_mp_montgomery_reduce()
2802 register mp_word *_W; in fast_mp_montgomery_reduce() local
2808 _W = W + ix; in fast_mp_montgomery_reduce()
2812 *_W++ += ((mp_word)mu) * ((mp_word)*tmpn++); in fast_mp_montgomery_reduce()
2826 register mp_word *_W, *_W1; in fast_mp_montgomery_reduce() local
2834 _W = W + ++ix; in fast_mp_montgomery_reduce()
2837 *_W++ += *_W1++ >> ((mp_word) DIGIT_BIT); in fast_mp_montgomery_reduce()
2851 _W = W + n->used; in fast_mp_montgomery_reduce()
2854 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK)); in fast_mp_montgomery_reduce()
3312 mp_word _W; in fast_s_mp_sqr() local
3316 _W = 0; in fast_s_mp_sqr()
3339 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_sqr()
3343 _W = _W + _W + W1; in fast_s_mp_sqr()
3347 _W += ((mp_word)a->dp[ix>>1])*((mp_word)a->dp[ix>>1]); in fast_s_mp_sqr()
3351 W[ix] = (mp_digit)(_W & MP_MASK); in fast_s_mp_sqr()
3354 W1 = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_sqr()