Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_decimal/libmpdec/
Dmpdecimal.c1637 case MPD_ROUND_FLOOR: in _mpd_rnd_incr()
1777 case MPD_ROUND_FLOOR: in _mpd_check_exp()
3366 if (ctx->round == MPD_ROUND_FLOOR) { in _mpd_qaddsub()
5948 if (mpd_iszero(a) && ctx->round != MPD_ROUND_FLOOR) { in mpd_qminus()
5969 if (mpd_iszero(a) && ctx->round != MPD_ROUND_FLOOR) { in mpd_qplus()
6009 workctx.round = MPD_ROUND_FLOOR; in mpd_qnext_minus()
7192 workctx.round = MPD_ROUND_FLOOR; in mpd_qfloor()
Dmpdecimal.h245 MPD_ROUND_FLOOR, /* round toward -infinity */ enumerator
/external/python/cpython3/Modules/_decimal/
D_decimal.c3307 numerator = dec_as_long(tmp, context, MPD_ROUND_FLOOR); in dec_as_integer_ratio()
4354 return dec_as_long(self, context, MPD_ROUND_FLOOR); in dec_floor()