Searched refs:PL_encoding (Results 1 – 10 of 10) sorted by relevance
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ |
| H A D | doop.c | 1049 if (PL_encoding) { in Perl_do_chomp() 1056 sv_recode_to_utf8(sv, PL_encoding); in Perl_do_chomp() 1097 else if (PL_encoding) { in Perl_do_chomp() 1101 sv_recode_to_utf8(svrecode, PL_encoding); in Perl_do_chomp()
|
| H A D | mg.c | 639 sv_setsv(sv, PL_encoding); in Perl_magic_get() 2089 if (PL_encoding) in Perl_magic_set() 2090 SvREFCNT_dec(PL_encoding); in Perl_magic_set() 2092 PL_encoding = newSVsv(sv); in Perl_magic_set() 2095 PL_encoding = Nullsv; in Perl_magic_set()
|
| H A D | toke.c | 1676 if (PL_encoding && !has_utf8) { in S_scan_const() 1677 sv_recode_to_utf8(sv, PL_encoding); in S_scan_const() 4203 else if (PL_encoding) { 4210 XPUSHs(PL_encoding); 6711 else if (PL_encoding) 6712 sv_recode_to_utf8(tmpstr, PL_encoding); 6979 if (PL_encoding && !UTF) { 6984 bool found = sv_cat_decode(sv, PL_encoding, PL_linestr, 7168 if (!PL_encoding || UTF) { 7173 if (has_utf8 || PL_encoding) [all …]
|
| H A D | perlapi.h | 225 #undef PL_encoding 226 #define PL_encoding (*Perl_Iencoding_ptr(aTHX))
|
| H A D | embedvar.h | 252 #define PL_encoding (PERL_GET_INTERP->Iencoding) macro 574 #define PL_encoding (vTHX->Iencoding) macro 899 #define PL_Iencoding PL_encoding
|
| H A D | sv.c | 3459 if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) in Perl_sv_utf8_upgrade_flags() 3460 sv_recode_to_utf8(sv, PL_encoding); in Perl_sv_utf8_upgrade_flags() 5844 if (PL_encoding) { in Perl_sv_eq() 5847 sv_recode_to_utf8(svrecode, PL_encoding); in Perl_sv_eq() 5852 sv_recode_to_utf8(svrecode, PL_encoding); in Perl_sv_eq() 5936 if (PL_encoding) { in Perl_sv_cmp() 5938 sv_recode_to_utf8(svrecode, PL_encoding); in Perl_sv_cmp() 5946 if (PL_encoding) { in Perl_sv_cmp() 5948 sv_recode_to_utf8(svrecode, PL_encoding); in Perl_sv_cmp() 10864 PL_encoding = sv_dup(proto_perl->Iencoding, param); in perl_clone_using()
|
| H A D | pp.c | 3237 if (PL_encoding && SvPOK(argsv) && !DO_UTF8(argsv)) { in PP() 3239 s = (U8*)sv_recode_to_utf8(tmpsv, PL_encoding); in PP() 3275 if (PL_encoding && !IN_BYTES) { in PP() 3276 sv_recode_to_utf8(TARG, PL_encoding); in PP()
|
| H A D | pp_ctl.c | 3313 encoding = PL_encoding; in PP() 3314 PL_encoding = Nullsv; in PP() 3319 PL_encoding = encoding; in PP()
|
| H A D | pp_hot.c | 2060 if (PL_encoding) in PP() 2061 sv_recode_to_utf8(nsv, PL_encoding); in PP()
|
| H A D | regcomp.c | 3344 if (PL_encoding && PL_regkind[(U8)OP(ret)] == EXACT) { in S_regatom() 3351 char *s = sv_recode_to_utf8(sv, PL_encoding); in S_regatom()
|