Lines Matching refs:send
1265 const U8* send = s + expectlen;
1286 for (++s; s < send; s++) {
1347 const U8* send;
1356 send = s + len;
1381 if ((STRLEN) (send - x) >= PERL_WORDSIZE
1418 assert(*ep >= s && *ep < send);
1431 } while (x + PERL_WORDSIZE <= send);
1437 while (x < send) {
2189 const U8* const send = s + len;
2192 while (x < send) {
2193 STRLEN cur_len = isUTF8_CHAR_flags(x, send, flags);
2256 const U8* const send = s + len;
2260 while (x < send) {
2261 const STRLEN cur_len = isUTF8_CHAR(x, send);
2276 return (x == send);
2608 const U8* const send = s + len;
2612 while (x < send) {
2613 const STRLEN cur_len = isSTRICT_UTF8_CHAR(x, send);
2628 return (x == send);
2685 const U8* const send = s + len;
2689 while (x < send) {
2690 const STRLEN cur_len = isC9_STRICT_UTF8_CHAR(x, send);
2705 return (x == send);
2785 const U8* send = s + len;
2789 while (x < send) {
2790 const STRLEN cur_len = isUTF8_CHAR_flags(x, send, flags);
2805 return (x == send);
3280 const U8 * send = s0 + curlen;
3310 while (LIKELY(state != 1) && ++s < send) {
3344 Perl_utf8_to_uvchr_buf_helper(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
3348 assert(s < send);
3355 return utf8n_to_uvchr(s, send - s, retlen,
3359 UV ret = utf8n_to_uvchr(s, send - s, retlen, 0);
3360 if (retlen && ret == 0 && (send <= s || *s != '\0')) {