Home
last modified time | relevance | path

Searched refs:REG_MINIMAL (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/contrib/ast/src/lib/libast/string/
H A Dstrmatch.c123 reflags |= REG_MINIMAL; in strgrpmatch()
143 …if (regexec(re, b, n, matchstate.match, reflags & ~(REG_MINIMAL|REG_SHELL_GROUP|REG_LEFT|REG_RIGHT… in strgrpmatch()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/
H A Dregnexec.c464 if (rex->flags & REG_MINIMAL) in parserep()
491 r = (rex->flags & REG_MINIMAL) ? BEST : GOOD; in parserep()
535 if (rex->flags & REG_MINIMAL) in parsetrie()
556 if (rex->flags & REG_MINIMAL) in parsetrie()
566 if (!(rex->flags & REG_MINIMAL)) in parsetrie()
834 if (r < BEST || (rex->flags & REG_MINIMAL)) in parse()
905 if (!(rex->flags & REG_MINIMAL)) in parse()
962 if (!(rex->flags & REG_MINIMAL)) in parse()
1043 if (rex->flags & REG_MINIMAL) in parse()
1090 if (!(rex->flags & REG_MINIMAL)) in parse()
[all …]
H A Dregcomp.c238 e->flags |= REG_MINIMAL; in mark()
240 e->flags &= ~REG_MINIMAL; in mark()
1837 minimal = !(env->flags & REG_MINIMAL); in rep()
1841 minimal = !!(env->flags & REG_MINIMAL); in rep()
2129 env->flags &= ~REG_MINIMAL; in grp()
2131 env->flags |= REG_MINIMAL; in grp()
2230 env->flags |= REG_MINIMAL; in grp()
2232 env->flags &= ~REG_MINIMAL; in grp()
2723 env->flags |= REG_MINIMAL; in seq()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/include/
H A Dregex.h57 #define REG_MINIMAL 0x00000400 /* minimal match */ macro
/illumos-gate/usr/src/test/libc-tests/tests/regex/
H A Dtestregex.c366 #ifndef REG_MINIMAL
444 #ifndef REG_MINIMAL
445 #define REG_MINIMAL NOTEST macro
1642 cflags |= REG_MINIMAL; in main()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/
H A DRELEASE934 02-08-12 regex/regnexec.c: fix REG_MINIMAL REX_DOT mb bug
1067 01-11-20 regex/regnexec.c: fix REG_MINIMAL character class match bug
1153 regex: change REG_MINIMAL to avoid negation -- much faster now