Searched refs:IS_NUMBER_NEG (Results 1 - 7 of 7) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/
H A DMakefile.PL30 IS_NUMBER_NOT_INT IS_NUMBER_NEG IS_NUMBER_INFINITY
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dgrok.t25 is($flags & IS_NUMBER_NEG, $sign eq '-' ? IS_NUMBER_NEG : 0,
/openbsd-current/gnu/usr.bin/perl/
H A Dnumeric.c716 IS_NUMBER_INFINITY | IS_NUMBER_NEG
717 IS_NUMBER_NAN | IS_NUMBER_NEG
730 =for apidoc Amnh|bool|IS_NUMBER_NEG
750 flags |= IS_NUMBER_NEG; /* Yes, -NaN happens. Incorrect but happens. */
983 C<IS_NUMBER_NEG>, C<IS_NUMBER_INFINITY>, C<IS_NUMBER_NAN> (defined in perl.h).
994 C<IS_NUMBER_NEG> if the number is negative (in which case C<*valuep> holds the
1056 numtype = IS_NUMBER_NEG;
1222 numtype &= IS_NUMBER_NEG;
1254 return (numtype | infnan) & ~IS_NUMBER_NEG; /* Clear sign for nan. */
1548 *value = (infnan & IS_NUMBER_NEG)
[all...]
H A Dsv.c1995 SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -NV_INF : NV_INF);
2172 if (!(numtype & IS_NUMBER_NEG)) {
2336 if (numtype & IS_NUMBER_NEG) {
2347 return (numtype & IS_NUMBER_NEG) ? IV_MIN : IV_MAX;
2426 if (!(numtype & IS_NUMBER_NEG))
2575 SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2599 if ((numtype & IS_NUMBER_NEG) && (value >= (UV)IV_MIN)) {
2606 if (numtype & IS_NUMBER_NEG) {
2608 * this point with both IS_NUMBER_NEG and value ==
H A Dperl.h8142 #define IS_NUMBER_NEG 0x08 /* leading minus sign */ macro
H A Dtoke.c12474 } else if (flags == (IS_NUMBER_IN_UV | IS_NUMBER_NEG)) {
/openbsd-current/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dppport.h4376 IS_NUMBER_NEG|5.007002|5.003007|p
16617 #ifndef IS_NUMBER_NEG
16618 # define IS_NUMBER_NEG 0x08 macro
16737 numtype = IS_NUMBER_NEG;
16876 numtype &= IS_NUMBER_NEG; /* Keep track of sign */
16879 numtype &= IS_NUMBER_NEG; /* Keep track of sign */
16885 numtype &= IS_NUMBER_NEG;

Completed in 785 milliseconds