Home
last modified time | relevance | path

Searched refs:Sg_Round (Results 1 – 6 of 6) sorted by relevance

/dports/lang/sagittarius-scheme/sagittarius-0.9.8/src/sagittarius/private/
H A Dnumber.h265 SG_EXTERN SgObject Sg_Round(SgObject num, int mode);
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/src/
H A Dnumber.c1338 SgObject x = Sg_Round(bottom, SG_ROUND_CEIL); in rationalize_rec()
3211 return Sg_Exact(Sg_Round(ik, SG_ROUND_FLOOR)); in exact_integer_sqrt()
3555 if (Sg_PositiveP(y)) return Sg_Round(Sg_Div(x, y), SG_ROUND_FLOOR); in Sg_IntegerDiv()
3556 return Sg_Negate(Sg_Round(Sg_Div(x, Sg_Negate(y)), SG_ROUND_FLOOR)); in Sg_IntegerDiv()
3786 SgObject Sg_Round(SgObject num, int mode) in Sg_Round() function
H A Dlib_flonums.stub297 (result (Sg_Round fl SG_ROUND_ROUND)))
H A Dlib_core.stub205 (result (Sg_Round x SG_ROUND_FLOOR)))
209 (result (Sg_Round x SG_ROUND_CEIL)))
213 (result (Sg_Round x SG_ROUND_TRUNC)))
217 (result (Sg_Round x SG_ROUND_ROUND)))
H A Dlib_core.c1653 SG_RESULT=(Sg_Round(x,SG_ROUND_FLOOR)); in core_floor()
1681 SG_RESULT=(Sg_Round(x,SG_ROUND_CEIL)); in core_ceiling()
1709 SG_RESULT=(Sg_Round(x,SG_ROUND_TRUNC)); in core_truncate()
1737 SG_RESULT=(Sg_Round(x,SG_ROUND_ROUND)); in core_round()
H A Dlib_flonums.c2165 SG_RESULT=(Sg_Round(fl,SG_ROUND_ROUND)); in sagittarius_flonums_flround()