Home
last modified time | relevance | path

Searched refs:mpd_uuint_t (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/_decimal/libmpdec/
Dumodarith.h304 return ((mpd_uuint_t) a * b) % m; in std_mulmod()
310 *a = ((mpd_uuint_t) *a * w) % m; in std_mulmod2c()
311 *b = ((mpd_uuint_t) *b * w) % m; in std_mulmod2c()
318 *a0 = ((mpd_uuint_t) *a0 * b0) % m; in std_mulmod2()
319 *a1 = ((mpd_uuint_t) *a1 * b1) % m; in std_mulmod2()
Dtypearith.h309 mpd_uuint_t hl; in _mpd_mul_words()
311 hl = (mpd_uuint_t)a * b; in _mpd_mul_words()
321 mpd_uuint_t hl; in _mpd_div_words()
323 hl = ((mpd_uuint_t)hi<<32) + lo; in _mpd_div_words()
325 *r = (mpd_uint_t)(hl - (mpd_uuint_t)(*q) * d); in _mpd_div_words()
Dmpdecimal.h192 typedef uint64_t mpd_uuint_t; /* double width unsigned mod type */ typedef