Searched refs:ubase (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Modules/_decimal/libmpdec/ |
D | mpdecimal.c | 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 [all …]
|