Lines Matching refs:_W
2253 mp_word _W;
2266 _W = 0;
2287 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--);
2292 W[ix] = ((mp_digit)_W) & MP_MASK;
2295 _W = _W >> ((mp_word)DIGIT_BIT);
2450 mp_word _W;
2462 _W = 0;
2482 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--);
2486 W[ix] = ((mp_digit)_W) & MP_MASK;
2489 _W = _W >> ((mp_word)DIGIT_BIT);
3067 mp_word _W;
3071 _W = 0;
3094 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--);
3098 _W = _W + _W + W1;
3102 _W += ((mp_word)a->dp[(unsigned)ix>>1])*((mp_word)a->dp[(unsigned)ix>>1]);
3106 W[ix] = (mp_digit)(_W & MP_MASK);
3109 W1 = _W >> ((mp_word)DIGIT_BIT);
3609 mp_word *_W;
3613 _W = W;
3620 *_W++ = *tmpx++;
3625 *_W++ = 0;
3659 mp_word *_W;
3665 _W = W + ix;
3669 *_W++ += ((mp_word)mu) * ((mp_word)*tmpn++);
3683 mp_word *_W, *_W1;
3691 _W = W + ++ix;
3694 *_W++ += *_W1++ >> ((mp_word) DIGIT_BIT);
3708 _W = W + n->used;
3711 *tmpx++ = (mp_digit)(*_W++ & ((mp_word) MP_MASK));