Lines Matching defs:to_end
573 C<to> up to C<to_end>.
587 S<C<to_end> - C<to>> is written to C<*retlen>, and as much of the source as
594 Perl_delimcpy_no_escape(char *to, const char *to_end,
600 Ptrdiff_t to_len = to_end - to;
640 1>. Similarly, the dest is C<to> up to C<to_end>.
654 S<C<to_end> - C<to>> is written to C<*retlen>, and as much of the source as
699 Perl_delimcpy(char *to, const char *to_end,
709 assert(to_end >= to);
762 if (copy_len >= to_end - to) {
763 Copy(from, to, to_end - to, char);
765 to = (char *) to_end;
780 if (stopped_early || copy_len > to_end - to) {
781 Copy(from, to, to_end - to, char);
790 if (to < to_end) {