Home
last modified time | relevance | path

Searched refs:PL_encoding (Results 1 – 10 of 10) sorted by relevance

/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/
H A Ddoop.c1049 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 Dmg.c639 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 Dtoke.c1676 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 Dperlapi.h225 #undef PL_encoding
226 #define PL_encoding (*Perl_Iencoding_ptr(aTHX))
H A Dembedvar.h252 #define PL_encoding (PERL_GET_INTERP->Iencoding) macro
574 #define PL_encoding (vTHX->Iencoding) macro
899 #define PL_Iencoding PL_encoding
H A Dsv.c3459 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 Dpp.c3237 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 Dpp_ctl.c3313 encoding = PL_encoding; in PP()
3314 PL_encoding = Nullsv; in PP()
3319 PL_encoding = encoding; in PP()
H A Dpp_hot.c2060 if (PL_encoding) in PP()
2061 sv_recode_to_utf8(nsv, PL_encoding); in PP()
H A Dregcomp.c3344 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()