Lines Matching refs:_W
2412 register mp_word _W; in fast_s_mp_mul_digs() local
2425 _W = 0; in fast_s_mp_mul_digs()
2446 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_digs()
2451 W[ix] = ((mp_digit)_W) & MP_MASK; in fast_s_mp_mul_digs()
2454 _W = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_mul_digs()
2700 register mp_word *_W; in fast_mp_montgomery_reduce() local
2704 _W = W; in fast_mp_montgomery_reduce()
2711 *_W++ = *tmpx++; in fast_mp_montgomery_reduce()
2716 *_W++ = 0; in fast_mp_montgomery_reduce()
2750 register mp_word *_W; in fast_mp_montgomery_reduce() local
2756 _W = W + ix; in fast_mp_montgomery_reduce()
2760 *_W++ += ((mp_word)mu) * ((mp_word)*tmpn++); in fast_mp_montgomery_reduce()
2774 register mp_word *_W, *_W1; in fast_mp_montgomery_reduce() local
2782 _W = W + ++ix; in fast_mp_montgomery_reduce()
2785 *_W++ += *_W1++ >> ((mp_word) DIGIT_BIT); in fast_mp_montgomery_reduce()
2799 _W = W + n->used; in fast_mp_montgomery_reduce()
2802 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK)); in fast_mp_montgomery_reduce()
3256 mp_word _W; in fast_s_mp_sqr() local
3260 _W = 0; in fast_s_mp_sqr()
3283 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_sqr()
3287 _W = _W + _W + W1; in fast_s_mp_sqr()
3291 _W += ((mp_word)a->dp[ix>>1])*((mp_word)a->dp[ix>>1]); in fast_s_mp_sqr()
3295 W[ix] = (mp_digit)(_W & MP_MASK); in fast_s_mp_sqr()
3298 W1 = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_sqr()