Lines Matching refs:ubase
7934 const mpd_uint_t *u, size_t ulen, uint32_t ubase, in _coeff_from_u16() argument
7941 assert(ubase <= (1U<<16)); in _coeff_from_u16()
7945 carry = _mpd_shortmul_c(w->data, w->data, n, ubase); in _coeff_from_u16()
7973 mpd_uint_t *u, mpd_ssize_t ulen, mpd_uint_t ubase) in _baseconv_to_smaller() argument
7978 assert(wbase < ubase); in _baseconv_to_smaller()
7987 (*w)[n++] = (uint32_t)_mpd_shortdiv_b(u, u, ulen, wbase, ubase); in _baseconv_to_smaller()
8015 const mpd_uint_t *u, size_t ulen, mpd_uint_t ubase) in _baseconv_to_larger() argument
8021 assert(ubase < wbase); in _baseconv_to_larger()
8025 carry = _mpd_shortmul_b(*w, *w, n, ubase, wbase); in _baseconv_to_larger()
8053 mpd_uint_t *u, mpd_ssize_t ulen, mpd_uint_t ubase, in _coeff_from_larger_base() argument
8059 assert(wbase < ubase); in _coeff_from_larger_base()
8068 w->data[n++] = (uint32_t)_mpd_shortdiv_b(u, u, ulen, wbase, ubase); in _coeff_from_larger_base()
8081 const uint32_t *u, size_t ulen, mpd_uint_t ubase, in _coeff_from_smaller_base() argument
8088 assert(wbase > ubase); in _coeff_from_smaller_base()
8092 carry = _mpd_shortmul_b(w->data, w->data, n, ubase, wbase); in _coeff_from_smaller_base()