Home
last modified time | relevance | path

Searched refs:MPD_MINALLOC (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Modules/_decimal/libmpdec/
Dmpalloc.c47 mpd_ssize_t MPD_MINALLOC = MPD_MINALLOC_MIN; variable
158 nwords = (nwords < MPD_MINALLOC) ? MPD_MINALLOC : nwords; in mpd_qnew_size()
185 return mpd_qnew_size(MPD_MINALLOC); in mpd_qnew()
Dcontext.c63 MPD_MINALLOC = n; in mpd_setminalloc()
Dmpdecimal.c503 assert(MPD_MINALLOC <= result->alloc); in mpd_qresize()
505 nwords = (nwords <= MPD_MINALLOC) ? MPD_MINALLOC : nwords; in mpd_qresize()
525 assert(MPD_MINALLOC <= result->alloc); in mpd_qresize_cxx()
527 nwords = (nwords <= MPD_MINALLOC) ? MPD_MINALLOC : nwords; in mpd_qresize_cxx()
548 assert(MPD_MINALLOC <= result->alloc); in mpd_qresize_zero()
550 nwords = (nwords <= MPD_MINALLOC) ? MPD_MINALLOC : nwords; in mpd_qresize_zero()
578 if (!mpd_isstatic_data(result) && result->alloc > MPD_MINALLOC) { in mpd_minalloc()
580 result->data = mpd_realloc(result->data, MPD_MINALLOC, in mpd_minalloc()
583 result->alloc = MPD_MINALLOC; in mpd_minalloc()
Dmpdecimal.h303 extern mpd_ssize_t MPD_MINALLOC;