Home
last modified time | relevance | path

Searched refs:nplusm (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/_decimal/libmpdec/
Dbasearith.c305 mpd_size_t nplusm, mpd_size_t n) in _mpd_basedivmod() argument
317 assert(n > 1 && nplusm >= n); in _mpd_basedivmod()
318 m = sub_size_t(nplusm, n); in _mpd_basedivmod()
323 if (nplusm >= MPD_MINALLOC_MAX) { in _mpd_basedivmod()
324 if ((u = mpd_alloc(nplusm+1, sizeof *u)) == NULL) { in _mpd_basedivmod()
335 _mpd_shortmul(u, uconst, nplusm, d); in _mpd_basedivmod()
340 assert(2 <= j+n && j+n <= nplusm); /* annotation for scan-build */ in _mpd_basedivmod()
Dbasearith.h64 const mpd_uint_t *vconst, mpd_size_t nplusm, mpd_size_t n);