Searched refs:mpd_uuint_t (Results 1 – 3 of 3) sorted by relevance
305 return ((mpd_uuint_t) a * b) % m; in std_mulmod()311 *a = ((mpd_uuint_t) *a * w) % m; in std_mulmod2c()312 *b = ((mpd_uuint_t) *b * w) % m; in std_mulmod2c()319 *a0 = ((mpd_uuint_t) *a0 * b0) % m; in std_mulmod2()320 *a1 = ((mpd_uuint_t) *a1 * b1) % m; in std_mulmod2()
311 mpd_uuint_t hl; in _mpd_mul_words()313 hl = (mpd_uuint_t)a * b; in _mpd_mul_words()323 mpd_uuint_t hl; in _mpd_div_words()325 hl = ((mpd_uuint_t)hi<<32) + lo; in _mpd_div_words()327 *r = (mpd_uint_t)(hl - (mpd_uuint_t)(*q) * d); in _mpd_div_words()
181 typedef uint64_t mpd_uuint_t; /* double width unsigned mod type */ typedef