Symbol: REG_STARTEND
bin/ed/sub.c
223
!regexec(pat, txt, SE_MAX, rm, REG_STARTEND | REG_NOTBOL));
lib/libc/regex/engine.c
150
if (eflags&REG_STARTEND) {
lib/libc/regex/regexec.c
148
# define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND))
regress/lib/libc/regex/main.c
255
if (options('e', f1)&REG_STARTEND) {
regress/lib/libc/regex/main.c
356
o |= REG_STARTEND;
regress/lib/libc/regex/main.c
93
if (eopts&REG_STARTEND) {
usr.bin/file/magic-load.c
272
if (regexec(re, fmt, 1, &pmatch, REG_STARTEND) != 0) {
usr.bin/file/magic-test.c
1024
result = (regexec(&re, ms->base, 1, &m, REG_STARTEND) == 0);
usr.bin/grep/grep.c
47
int eflags = REG_STARTEND;
usr.bin/less/pattern.c
120
#ifdef REG_STARTEND
usr.bin/less/pattern.c
121
flags |= REG_STARTEND;
usr.bin/mg/re_search.c
361
re_flags = REG_STARTEND;
usr.bin/mg/re_search.c
424
RE_NMATCH, regex_match, REG_STARTEND) &&
usr.bin/mg/re_search.c
571
RE_NMATCH, regex_match, REG_STARTEND);
usr.bin/mg/re_search.c
644
RE_NMATCH, regex_match, REG_STARTEND);
usr.bin/sed/process.c
531
nomatch ? 0 : maxnsub + 1, match, eflags | REG_STARTEND);
usr.bin/split/split.c
246
if (regexec(&rgx, bfr, 0, &pmatch, REG_STARTEND) == 0)
usr.bin/vi/common/search.c
233
(match[0].rm_so == 0 ? 0 : REG_NOTBOL) | REG_STARTEND);
usr.bin/vi/common/search.c
358
(match[0].rm_eo == len ? 0 : REG_NOTEOL) | REG_STARTEND);
usr.bin/vi/common/search.c
390
REG_STARTEND);
usr.bin/vi/ex/ex_global.c
213
regexec(&sp->re_c, dbp, 0, match, REG_STARTEND)) {
usr.bin/vi/ex/ex_subst.c
531
eflags = REG_STARTEND;