Lines Matching defs:svp

1021     SV **svp;
1031 svp = PL_stack_base + TOPMARK + 1;
1032 PUSHMARK(svp); /* push dst */
1033 PUSHMARK(svp); /* push src */
1270 SV **svp = PL_stack_base + POPMARK; /* pop original mark */
1272 svp += items;
1273 rpp_popfree_to(svp);
3335 SV ** const svp = av_fetch(arg, index, 0);
3336 sv = svp ? *svp : NULL;
4588 SV * const * const svp = svp_cached ? svp_cached : hv_fetch(GvHVn(PL_incgv), unixname, unixlen, 0);
4589 if ( svp ) {
4592 SvGETMAGIC(*svp);
4593 if (SvOK(*svp)) {
4716 SV **svp;
4966 svp = hv_fetch(GvHVn(PL_incgv), name, len, 0);
4976 if (svp && SvOK(*svp)) {
4978 const char *tmp_pv = SvPV_const(*svp,len);
5093 SV **svp= av_fetch(inc_checked, i, TRUE);
5094 if (!svp || !*svp) continue;
5096 sv_catsv(inc, *svp);
5198 SV** const svp = hv_fetch(GvHVn(PL_incgv), unixname, unixlen, 0);
5199 if (!svp)
5893 SV * const * const svp = av_fetch(av, i, FALSE);
5898 if (svp)
5899 rpp_xpush_1(*svp);
5999 SV ** const svp = av_fetch(other_av, i, FALSE);
6001 if (svp) { /* ??? When can this not happen? */
6002 if (hv_exists_ent(hv, *svp, 0))
6050 SV ** const svp = av_fetch(other_av, i, FALSE);
6053 if (svp) { /* ??? When can this not happen? */
6054 if (hv_exists_ent(MUTABLE_HV(SvRV(d)), *svp, 0))
6122 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
6124 if (svp && matcher_matches_sv(matcher, *svp)) {
6140 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
6142 if (!svp || !SvOK(*svp))
6155 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
6156 if (!svp)
6159 rpp_xpush_2(d, *svp);