Lines Matching defs:dstr
218 SV * const dstr = cx->sb_dstr;
245 sv_catsv_nomg(dstr, *PL_stack_sp);
260 if (DO_UTF8(dstr) && !SvUTF8(targ))
261 sv_catpvn_nomg_utf8_upgrade(dstr, s, cx->sb_strend - s, nsv);
263 sv_catpvn_nomg(dstr, s, cx->sb_strend - s);
269 retval = dstr;
272 targ = dstr;
278 SvPV_set(targ, SvPVX(dstr));
279 SvCUR_set(targ, SvCUR(dstr));
280 SvLEN_set(targ, SvLEN(dstr));
281 if (DO_UTF8(dstr))
283 SvPV_set(dstr, NULL);
326 * potentially shorter dstr buffer). Normally (i.e. in
368 if (DO_UTF8(dstr) && !SvUTF8(cx->sb_targ))
369 sv_catpvn_nomg_utf8_upgrade(dstr, s, m - s, nsv);
371 sv_catpvn_nomg(dstr, s, m-s);