Searched refs:ssv (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dsv.h1113 #define sv_setsv(dsv, ssv) sv_setsv_flags(dsv, ssv, SV_GMAGIC)
1114 #define sv_setsv_nomg(dsv, ssv) sv_setsv_flags(dsv, ssv, 0)
1115 #define sv_catsv(dsv, ssv) sv_catsv_flags(dsv, ssv, SV_GMAGIC)
1116 #define sv_catsv_nomg(dsv, ssv) sv_catsv_flags(dsv, ssv, 0)
1159 =for apidoc Am|void|SvSetSV|SV* dsb|SV* ssv
1160 Calls C<sv_setsv> if dsv is not the same as ssv
[all...]
H A Dutf8.c1884 =for apidoc A|char *|sv_uni_display|SV *dsv|SV *ssv|STRLEN pvlim|UV flags
1896 Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags) argument
1898 return Perl_pv_uni_display(aTHX_ dsv, (U8*)SvPVX(ssv), SvCUR(ssv),
H A Dpp.c527 SV *ssv = POPs; local
531 if (ssv && !SvGMAGICAL(ssv) && !SvAMAGIC(ssv) && SvROK(ssv))
533 ptr = SvPV(ssv,len);
H A Dsv.c3268 Perl_sv_copypv(pTHX_ SV *dsv, register SV *ssv) argument
3272 s = SvPV(ssv,len);
3274 if (SvUTF8(ssv))
3611 Copies the contents of the source SV C<ssv> into the destination SV
3623 Copies the contents of the source SV C<ssv> into the destination SV
3629 C<ssv> if appropriate, else not. C<sv_setsv> and C<sv_setsv_nomg> are
4421 Concatenates the string from SV C<ssv> onto the end of the string in
4422 SV C<dsv>. Modifies C<dsv> but not C<ssv>. Handles 'get' magic, but
4427 Concatenates the string from SV C<ssv> onto the end of the string in
4428 SV C<dsv>. Modifies C<dsv> but not C<ssv>
4435 Perl_sv_catsv_flags(pTHX_ SV *dsv, register SV *ssv, I32 flags) argument
4480 Perl_sv_catsv_mg(pTHX_ SV *dsv, register SV *ssv) argument
11525 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding, SV *ssv, int *offset, char *tstr, int tlen) argument
[all...]
H A Dproto.h706 /* PERL_CALLCONV void sv_catsv(pTHX_ SV* dsv, SV* ssv); */
744 PERL_CALLCONV bool Perl_sv_cat_decode(pTHX_ SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen);
763 /* PERL_CALLCONV void sv_setsv(pTHX_ SV* dsv, SV* ssv); */
812 PERL_CALLCONV char* Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags);
1284 PERL_CALLCONV void Perl_sv_setsv_flags(pTHX_ SV* dsv, SV* ssv, I32 flags);
1286 PERL_CALLCONV void Perl_sv_catsv_flags(pTHX_ SV* dsv, SV* ssv, I32 flags);
1290 PERL_CALLCONV void Perl_sv_copypv(pTHX_ SV* dsv, SV* ssv);

Completed in 56 milliseconds