Lines Matching refs:PL_bostr

120     : (pos - off >= PL_bostr)		\
238 (IV)(PL_reg_start_tmp[paren] - PL_bostr),
295 PL_regstartp[paren] = HOPc(input, -1) - PL_bostr; \
296 PL_regendp[paren] = input - PL_bostr; \
1166 if (s == PL_bostr)
1169 U8 *r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1189 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1209 if (s == PL_bostr)
1212 U8 *r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1230 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1666 PL_bostr = strbeg;
1860 if (s > PL_bostr)
1886 char *t = (last1 >= PL_bostr) ? HOPc(last1, 1) : last1 + 1;
2140 prog->subbeg = PL_bostr;
2141 prog->sublen = PL_regeol - PL_bostr; /* strend may have been modified */
2143 prog->startp[0] = startpos - PL_bostr;
2187 prog->endp[0] = PL_reginput - PL_bostr;
2294 int pref_len = (locinput - PL_bostr) > (5 + taill) - l
2295 ? (5 + taill) - l : locinput - PL_bostr;
2330 (IV)(locinput - PL_bostr),
2354 if (locinput == PL_bostr || (PL_multiline &&
2362 if (locinput == PL_bostr ||
2369 if (locinput == PL_bostr)
2613 if (locinput == PL_bostr)
2616 U8 *r = reghop3((U8*)locinput, -1, (U8*)PL_bostr);
2631 ln = (locinput != PL_bostr) ?
2777 s = PL_bostr + ln;
2780 char *e = PL_bostr + PL_regendp[n];
2843 PL_regendp[0] = PL_reg_magic->mg_len = locinput - PL_bostr;
2984 PL_regstartp[n] = PL_reg_start_tmp[n] - PL_bostr;
2985 PL_regendp[n] = locinput - PL_bostr;
3172 PL_reg_maxiter = (PL_regeol - PL_bostr + 1) * (scan->flags>>4);
3195 I32 o = locinput - PL_bostr, b;
3421 HOPc(PL_reginput, -l) - PL_bostr;
3422 PL_regendp[paren] = PL_reginput - PL_bostr;
3497 PL_regstartp[paren] = HOPc(PL_reginput, -l) - PL_bostr;
3498 PL_regendp[paren] = PL_reginput - PL_bostr;
4481 return S_reghop3(aTHX_ s, off, (U8*)(off >= 0 ? PL_regeol : PL_bostr));
4511 return S_reghopmaybe3(aTHX_ s, off, (U8*)(off >= 0 ? PL_regeol : PL_bostr));