Searched refs:IV_MAX (Results 1 - 17 of 17) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dppport.h4568 IV_MAX|5.003007|5.003007|
11938 #ifndef IV_MAX
11939 # define IV_MAX PERL_INT_MAX macro
11966 #ifndef IV_MAX
11967 # define IV_MAX PERL_QUAD_MAX macro
11993 #ifndef IV_MAX
11994 # define IV_MAX PERL_LONG_MAX macro
12026 # define PERL_QUAD_MAX IV_MAX
12050 #ifndef IV_MAX
12051 # define IV_MAX PERL_LONG_MA macro
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Scalar-List-Utils/
H A DListUtil.xs411 if (i >= IV_MAX / retiv) {
431 if (i <= IV_MAX / retiv) {
447 if (retiv <= IV_MAX - i) {
1387 else if(nv > 0 && (UV)nv > (UV)IV_MAX)
/openbsd-current/gnu/usr.bin/perl/
H A Dpp.h454 & (TARGu_uv <= (UV)IV_MAX))) \
H A Dutf8.h1136 #define MAX_LEGAL_CP ((UV)IV_MAX)
H A Dperl.h2418 # define IV_MAX ((IV)INT64_MAX) macro
2426 # define IV_MAX PERL_QUAD_MAX macro
2435 # define IV_MAX ((IV)INT32_MAX) macro
2447 # define IV_MAX PERL_LONG_MAX macro
4702 #define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
4750 =for apidoc Amn|IV|IV_MAX
4774 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
4780 #define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
H A Dpp.c1035 && SvIVX(sv) != IV_MAX)
1174 else if (result <= (UV)IV_MAX)
1680 if (ans <= ~((UV)IV_MAX)+1)
1734 if (uv > IV_MAX)
1735 count = IV_MAX; /* The best we can do? */
2563 SETi(SvIVX(sv)); /* special case: -((UV)IV_MAX+1) ==
2567 else if (SvUVX(sv) <= IV_MAX) {
3287 pos2_is_uv = (UV)len_iv > (UV)IV_MAX;
3480 if (SvIOK_UV(offsetsv) && SvUVX(offsetsv) > (UV)IV_MAX)
H A Dpp_hot.c1390 && SvIVX(sv) != IV_MAX)
4186 else if (UNLIKELY(cur == IV_MAX)) {
4187 /* Handle end of range at IV_MAX */
5656 elem = uv > IV_MAX ? IV_MAX : uv;
H A Dsv.c1544 if (u <= (UV)IV_MAX) {
2034 /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2035 certainly cast into the IV range at IV_MAX, whereas the correct
2036 answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2045 if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2174 if (value <= (UV)IV_MAX) {
2237 "U_V(Perl_fabs(SvNVX(sv))) < (UV)IV_MAX" here to ensure
2241 (UV)IV_MAX);
2340 if (value < (UV)IV_MAX)
2347 return (numtype & IS_NUMBER_NEG) ? IV_MIN : IV_MAX;
[all...]
H A Dpp_ctl.c1293 ? SvIsUV(right) && SvUV(right) > IV_MAX
1294 : SvNV_nomg(right) > (NV) IV_MAX)))
1323 if (n) /* avoid incrementing above IV_MAX */
2307 if (nv < (NV)IV_MIN || nv > (NV)IV_MAX)
2314 SvUV_nomg(sv) > (UV)IV_MAX)))
H A Dop.c5904 UV end = (i + 1 < len) ? array[i+1] - 1 : IV_MAX;
5907 if (end == IV_MAX) {
6156 /* IV_MAX keeps things from going out of bounds */
6157 start = MIN(IV_MAX, start);
6158 end = MIN(IV_MAX, end);
6498 : IV_MAX - t_cp;
6503 t_cp_end = MIN(IV_MAX, t_cp + span - 1);
6514 r_cp_end = MIN(IV_MAX, r_cp + span - 1);
6640 if ( t_cp_end >= IV_MAX - 1
6870 if (t_cp >= IV_MAX) {
[all...]
H A Dhv.c1114 if (u <= (UV)IV_MAX) {
H A Dregcomp.c11975 /* Currently the maximum allowed code point by the system is IV_MAX.
11978 * point of those. IV_MAX suffices though, as it will be a large first
11980 Size_t low_len = uvchr_to_utf8(low_utf8, MIN(lowest_cp, IV_MAX))
11995 if (highest_cp <= IV_MAX) {
H A Dtoke.c12470 if (uv <= IV_MAX)
/openbsd-current/gnu/usr.bin/perl/cpan/Encode/Encode/
H A Dencode.h263 # if defined(UV_IS_QUAD) /* These assume IV_MAX is 2**63-1 */
1193 # define MAX_EXTERNALLY_LEGAL_CP ((UV) (IV_MAX))
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/
H A DPOSIX.xs3378 if (num < IV_MIN || num > IV_MAX)
/openbsd-current/gnu/usr.bin/perl/dist/Storable/
H A DStorable.xs2496 if ((flags & SVf_IVisUV) && SvUV(sv) > IV_MAX) {
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/
H A DAPItest.xs4695 /* tests that IV_MAX and UV_MAX have types suitable
4699 RETVAL = newSVpvf("iv %" IVdf " uv %" UVuf, IV_MAX, UV_MAX);

Completed in 633 milliseconds