Home
last modified time | relevance | path

Searched refs:numtype (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/
H A Dnumeric.c1027 int numtype = 0; in Perl_grok_number_flags() local
1056 numtype = IS_NUMBER_NEG; in Perl_grok_number_flags()
1140 return numtype|IS_NUMBER_IN_UV; in Perl_grok_number_flags()
1170 numtype |= in Perl_grok_number_flags()
1178 numtype |= IS_NUMBER_IN_UV; in Perl_grok_number_flags()
1184 numtype |= IS_NUMBER_NOT_INT; in Perl_grok_number_flags()
1190 numtype |= IS_NUMBER_NOT_INT | IS_NUMBER_IN_UV; /* valuep assigned below */ in Perl_grok_number_flags()
1217 return numtype | IS_NUMBER_TRAILING; in Perl_grok_number_flags()
1222 numtype &= IS_NUMBER_NEG; in Perl_grok_number_flags()
1223 numtype |= IS_NUMBER_NOT_INT; in Perl_grok_number_flags()
[all …]
H A Dsv.c1869 int numtype;
1878 numtype = grok_number(sbegin, len, NULL);
1879 return ((numtype & IS_NUMBER_TRAILING)) ? 0 : numtype;
1987 , I32 numtype
1994 DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_2iuv_non '%s', IV=0x%" UVxf " NV=%" NVgf " inttype=%" UVXf "\n", SvPVX_const(sv), SvIVX(sv), SvNVX(sv), (UV)numtype)); in S_sv_setnv()
2038 /* If numtype is infnan, set the NV of the sv accordingly. in S_sv_2iuv_common()
2039 * If numtype is anything else, try setting the NV using Atof(PV). */ in S_sv_2iuv_common()
2041 S_sv_setnv(pTHX_ SV* sv, int numtype) in S_sv_2iuv_common()
2046 if ((numtype in S_sv_2iuv_common()
1817 int numtype; Perl_looks_like_number() local
1935 S_sv_2iuv_non_preserve(pTHX_ SV * const sv,I32 numtype) S_sv_2iuv_non_preserve() argument
1989 S_sv_setnv(pTHX_ SV * sv,int numtype) S_sv_setnv() argument
2113 int numtype; S_sv_2iuv_common() local
2330 const int numtype Perl_sv_2iv_flags() local
2420 const int numtype Perl_sv_2uv_flags() local
2568 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value); Perl_sv_2nv_flags() local
9255 const int numtype = grok_number_flags(SvPVX_const(sv), SvCUR(sv), NULL, PERL_SCAN_TRAILING); global() local
9440 const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL); global() local
[all...]
H A Dproto.h9120 S_sv_2iuv_non_preserve(pTHX_ SV * const sv, I32 numtype);
H A Dembed.fnc5800 |I32 numtype
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/
H A Dgrok94 int numtype = 0;
104 numtype = IS_NUMBER_NEG;
176 numtype |=
197 numtype |= IS_NUMBER_IN_UV;
203 numtype |= IS_NUMBER_NOT_INT;
209 numtype |= IS_NUMBER_NOT_INT | IS_NUMBER_IN_UV; /* valuep assigned below */
243 numtype &= IS_NUMBER_NEG; /* Keep track of sign */
244 numtype |= IS_NUMBER_INFINITY | IS_NUMBER_NOT_INT;
246 numtype &= IS_NUMBER_NEG; /* Keep track of sign */
247 numtype |= IS_NUMBER_NAN | IS_NUMBER_NOT_INT;
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dppport.h16727 int numtype = 0; in DPPP_() local
16737 numtype = IS_NUMBER_NEG; in DPPP_()
16809 numtype |= in DPPP_()
16830 numtype |= IS_NUMBER_IN_UV; in DPPP_()
16836 numtype |= IS_NUMBER_NOT_INT; in DPPP_()
16842 numtype |= IS_NUMBER_NOT_INT | IS_NUMBER_IN_UV; /* valuep assigned below */ in DPPP_()
16876 numtype &= IS_NUMBER_NEG; /* Keep track of sign */ in DPPP_()
16877 numtype |= IS_NUMBER_INFINITY | IS_NUMBER_NOT_INT; in DPPP_()
16879 numtype &= IS_NUMBER_NEG; /* Keep track of sign */ in DPPP_()
16880 numtype |= IS_NUMBER_NAN | IS_NUMBER_NOT_INT; in DPPP_()
[all …]
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/
H A Dembed.fnc3152 S |int |sv_2iuv_non_preserve |NN SV *const sv|I32 numtype