Lines Matching refs:_W
249 register mp_word *_W; in fast_mp_montgomery_reduce() local
253 _W = W; in fast_mp_montgomery_reduce()
260 *_W++ = *tmpx++; in fast_mp_montgomery_reduce()
265 *_W++ = 0; in fast_mp_montgomery_reduce()
299 register mp_word *_W; in fast_mp_montgomery_reduce() local
305 _W = W + ix; in fast_mp_montgomery_reduce()
309 *_W++ += ((mp_word)mu) * ((mp_word)*tmpn++); in fast_mp_montgomery_reduce()
323 register mp_word *_W, *_W1; in fast_mp_montgomery_reduce() local
331 _W = W + ++ix; in fast_mp_montgomery_reduce()
334 *_W++ += *_W1++ >> ((mp_word) DIGIT_BIT); in fast_mp_montgomery_reduce()
348 _W = W + n->used; in fast_mp_montgomery_reduce()
351 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK)); in fast_mp_montgomery_reduce()
418 register mp_word _W; in fast_s_mp_mul_digs() local
431 _W = 0; in fast_s_mp_mul_digs()
452 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_digs()
457 W[ix] = ((mp_digit)_W) & MP_MASK; in fast_s_mp_mul_digs()
460 _W = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_mul_digs()
522 mp_word _W; in fast_s_mp_mul_high_digs() local
534 _W = 0; in fast_s_mp_mul_high_digs()
554 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_high_digs()
558 W[ix] = ((mp_digit)_W) & MP_MASK; in fast_s_mp_mul_high_digs()
561 _W = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_mul_high_digs()
639 mp_word _W; in fast_s_mp_sqr() local
643 _W = 0; in fast_s_mp_sqr()
666 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_sqr()
670 _W = _W + _W + W1; in fast_s_mp_sqr()
674 _W += ((mp_word)a->dp[ix>>1])*((mp_word)a->dp[ix>>1]); in fast_s_mp_sqr()
678 W[ix] = (mp_digit)(_W & MP_MASK); in fast_s_mp_sqr()
681 W1 = _W >> ((mp_word)DIGIT_BIT); in fast_s_mp_sqr()