Lines Matching defs:send

902     const U8 *send = e;
909 send = s + MIN(UTF8_MAXBYTES - 1, e - s);
910 while (s < send) {
1410 const U8 * send = s0 + curlen;
1420 * too short one. Otherwise the first two are set to 's0' and 'send', and
1437 if (is_HANGUL_ED_utf8_safe(s0, send)) { /* Always false on EBCDIC */
1457 assert(! isUTF8_CHAR(s0, send)
1458 || UTF8_IS_SURROGATE(s0, send)
1459 || UTF8_IS_SUPER(s0, send)
1460 || UTF8_IS_NONCHAR(s0,send));
1549 send = (U8*) s0 + expectlen;
1554 for (s = s0 + 1; s < send; s++) {
1722 * send points to just after where that character should
1853 _byte_dump_string(s0, send - s0, 0),
1877 : (int) (send - s0);
2054 _byte_dump_string(s0, send - s0, 0),
2074 _byte_dump_string(s0, send - s0, 0),
2130 is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
2150 Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
2154 return utf8_to_uvchr_buf_helper(s, send, retlen);
2418 U8 * const send = s + *lenp;
2446 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
2503 } while (s + PERL_WORDSIZE <= send);
2517 while (s < send) {
2519 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
2541 while (s < send) {
2704 const U8 *send = s + *lenp;
2719 while (s < send) {
2725 if (UNLIKELY (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s - 1, send))) {
2783 const U8 * const send = s + (*lenp);
2791 Newx(d, (*lenp) + variant_under_utf8_count(s, send) + 1, U8);
2794 while (s < send) {
2931 U8* send;
2936 send = s + bytelen;
2938 while (s < send) {
2940 UV uv = utf8n_to_uvchr(s, send - s, &retlen,
4040 U8* send = ustrp + *lenp;
4041 while (s < send) {