Home
last modified time | relevance | path

Searched refs:SG_INT_MIN (Results 1 – 9 of 9) sorted by relevance

/dports/lang/sagittarius-scheme/sagittarius-0.9.8/src/
H A Dlib_fixnums.c948 SG_RESULT=(SG_INT_MIN); in sagittarius_fixnums_least_fixnum()
1372 if (((SG_INT_MIN)<=(ret))&&((ret)<=(SG_INT_MAX))){SG_RESULT=(ret);} else {{Sg_ImplementationRestric… in sagittarius_fixnums_fx_2b()
1405 if (((SG_INT_MIN)<=(ret))&&((ret)<=(SG_INT_MAX))){SG_RESULT=(ret);} else {{Sg_ImplementationRestric… in sagittarius_fixnums_fx_2a()
1441 if ((fx1)==(SG_INT_MIN)){ in sagittarius_fixnums_fx_()
1497 if (((SG_INT_MIN)<=(ret))&&((ret)<=(SG_INT_MAX))){SG_RESULT=(ret);} else {{Sg_ImplementationRestric… in sagittarius_fixnums_fxdiv()
1534 if (((SG_INT_MIN)<=(ret))&&((ret)<=(SG_INT_MAX))){SG_RESULT=(ret);} else {{Sg_ImplementationRestric… in sagittarius_fixnums_fxmod()
1581 if (((SG_INT_MIN)<=(ret))&&((ret)<=(SG_INT_MAX))){SG_RESULT=(ret);} else {{Sg_ImplementationRestric… in sagittarius_fixnums_fxdiv0()
1617 if (((SG_INT_MIN)<=(ret))&&((ret)<=(SG_INT_MAX))){SG_RESULT=(ret);} else {{Sg_ImplementationRestric… in sagittarius_fixnums_fxmod0()
2184 if (((SG_INT_MIN)<=(ret))&&((ret)<=(SG_INT_MAX))){SG_RESULT=(ret);} else {{Sg_ImplementationRestric… in sagittarius_fixnums_fxarithmetic_shift()
2220 if (((SG_INT_MIN)<=(ret))&&((ret)<=(SG_INT_MAX))){SG_RESULT=(ret);} else {{Sg_ImplementationRestric… in sagittarius_fixnums_fxarithmetic_shift_left()
[all …]
H A Dlib_fixnums.stub76 (result SG_INT_MIN))
148 ((_ fx) `(and (<= SG_INT_MIN ,fx) (<= ,fx SG_INT_MAX))))
166 (if (== fx1 SG_INT_MIN)
H A Dvminsn.c283 {long cise__1168=(SG_INT_VALUE(obj))+(SG_INT_VALUE(AC(vm)));if (((SG_INT_MIN)<=(cise__1168))&&((SG_… in CASE()
300 {long cise__1170=(val1)+(SG_INT_VALUE(AC(vm)));if (((SG_INT_MIN)<=(cise__1170))&&((SG_INT_MAX)>=(ci… in CASE()
314 {long cise__1172=(SG_INT_VALUE(obj))-(SG_INT_VALUE(AC(vm)));if (((SG_INT_MIN)<=(cise__1172))&&((SG_… in CASE()
331 {long cise__1174=(val1)-(SG_INT_VALUE(AC(vm)));if (((SG_INT_MIN)<=(cise__1174))&&((SG_INT_MAX)>=(ci… in CASE()
H A Dnumber.c160 if ((value <= SG_INT_MAX) && (value >= SG_INT_MIN)) return SG_MAKE_INT(value); in int64_to_integer()
777 if (x >= SG_INT_MIN && x <= SG_INT_MAX) { in Sg_MakeInteger()
795 if ((x <= SG_INT_MAX) && (x >= SG_INT_MIN)) return SG_MAKE_INT(x); in Sg_MakeIntegerFromS64()
1510 if (n == SG_INT_MIN) return Sg_MakeInteger(-n); in Sg_Negate()
1582 } else if (d < SG_INT_MIN || d > SG_INT_MAX) { in Sg_Exact()
1590 if (d < SG_INT_MIN || d > SG_INT_MAX) { in Sg_Exact()
2136 if ((v1 != 0 && k / v1 != v0) || !(k >= SG_INT_MIN && k <= SG_INT_MAX)) { in Sg_Mul()
H A Dinstructions.scm54 (if (and (<= SG_INT_MIN ,r) (>= SG_INT_MAX ,r))
H A Dbignum.c326 && bn->elements[0] <= (unsigned long)-SG_INT_MIN) { in bignum_normalize_rec()
501 if ((n >= SG_INT_MIN) && (n <= SG_INT_MAX)) return SG_MAKE_INT(n); in Sg_BignumToInteger()
H A Dlib_core.stub1212 (when (or (< (SG_INT_VALUE v) SG_INT_MIN)
1243 (when (or (< (SG_INT_VALUE v) SG_INT_MIN)
H A Dlib_core.c7759 if (((SG_INT_VALUE(v))<(SG_INT_MIN))||( in core_bytevector_s64_native_setX()
7868 if (((SG_INT_VALUE(v))<(SG_INT_MIN))||( in core_bytevector_s64_setX()
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/src/sagittarius/private/
H A Dsagittariusdefs.h377 #define SG_INT_MIN (-SG_INT_MAX - 1) macro