Lines Matching refs:ellength
1668 int ellength; in do_after_lines() local
1669 char *pp = end_of_line(lastmatchrestart, endptr, &ellength); in do_after_lines()
1670 if (ellength == 0 && pp == main_buffer + bufsize) break; in do_after_lines()
2718 int ellength; in pcre2grep() local
2724 p = end_of_line(p, ptr, &ellength); in pcre2grep()
2737 pp = end_of_line(pp, endptr, &ellength); in pcre2grep()
2773 int ellength; in pcre2grep() local
2777 pp = end_of_line(pp, endptr, &ellength); in pcre2grep()
2925 int ellength; in pcre2grep() local
2930 t = end_of_line(t, endptr, &ellength); in pcre2grep()
2933 endmatch = end_of_line(endmatch, endptr, &ellength); in pcre2grep()
2934 linelength = endmatch - ptr - ellength; in pcre2grep()
3453 int ellength; in compile_pattern() local
3455 char *pe = end_of_line(ps, eop, &ellength); in compile_pattern()
3457 if (ellength != 0) in compile_pattern()
3459 patlen = pe - ps - ellength; in compile_pattern()
3460 if (add_pattern(pe, p->length-patlen-ellength, p) == NULL) return FALSE; in compile_pattern()