Lines Matching refs:mp_word
23 mp_word r; in s_mp_sqr()
37 r = ((mp_word) t.dp[2*ix]) + in s_mp_sqr()
38 ((mp_word)a->dp[ix])*((mp_word)a->dp[ix]); in s_mp_sqr()
41 t.dp[ix+ix] = (mp_digit) (r & ((mp_word) MP_MASK)); in s_mp_sqr()
44 u = (mp_digit)(r >> ((mp_word) DIGIT_BIT)); in s_mp_sqr()
54 r = ((mp_word)tmpx) * ((mp_word)a->dp[iy]); in s_mp_sqr()
59 r = ((mp_word) *tmpt) + r + r + ((mp_word) u); in s_mp_sqr()
62 *tmpt++ = (mp_digit) (r & ((mp_word) MP_MASK)); in s_mp_sqr()
65 u = (mp_digit)(r >> ((mp_word) DIGIT_BIT)); in s_mp_sqr()
69 r = ((mp_word) *tmpt) + ((mp_word) u); in s_mp_sqr()
70 *tmpt++ = (mp_digit) (r & ((mp_word) MP_MASK)); in s_mp_sqr()
71 u = (mp_digit)(r >> ((mp_word) DIGIT_BIT)); in s_mp_sqr()