Searched refs:match_size (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/gnu/usr.bin/grep/
H A Dgrep.c609 size_t match_size; local
611 while ((match_offset = (*execute) (beg, lim - beg, &match_size, 1))
617 if (match_size == 0)
621 fwrite(b, sizeof (char), match_size, stdout);
625 beg = b + match_size;
634 size_t match_size; local
636 while (lim-beg && (match_offset = (*execute) (beg, lim - beg, &match_size, 1))
644 if (match_size == 0)
648 fwrite (b, sizeof (char), match_size, stdout);
650 beg = b + match_size;
672 size_t match_size; local
756 size_t match_size; local
[all...]
H A Dsearch.c325 EGexecute (char const *buf, size_t size, size_t *match_size, int exact) argument
662 *match_size = len;
889 Fexecute (char const *buf, size_t size, size_t *match_size, int exact) argument
1156 *match_size = len;
1234 Pexecute (char const *buf, size_t size, size_t *match_size, int exact) argument
1276 *match_size = end - beg;

Completed in 99 milliseconds