Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libast/common/string/
H A Dstrmatch.c112 reflags |= REG_MINIMAL; in strgrpmatch()
132 …if (regexec(re, b, n, matchstate.match, reflags & ~(REG_MINIMAL|REG_SHELL_GROUP|REG_LEFT|REG_RIGHT… in strgrpmatch()
/titanic_41/usr/src/lib/libast/common/regex/
H A Dregnexec.c410 if ((rex->flags & REG_MINIMAL) && n >= rex->lo && n < rex->hi) in parserep()
465 if (rex->flags & REG_MINIMAL) in parserep()
473 if (!(rex->flags & REG_MINIMAL) || n >= rex->hi) in parserep()
492 r = (rex->flags & REG_MINIMAL) ? BEST : GOOD; in parserep()
536 if (rex->flags & REG_MINIMAL) in parsetrie()
557 if (rex->flags & REG_MINIMAL) in parsetrie()
567 if (!(rex->flags & REG_MINIMAL)) in parsetrie()
835 if (r < BEST || (rex->flags & REG_MINIMAL)) in parse()
906 if (!(rex->flags & REG_MINIMAL)) in parse()
963 if (!(rex->flags & REG_MINIMAL)) in parse()
[all …]
H A Dregcomp.c229 e->flags |= REG_MINIMAL; in mark()
231 e->flags &= ~REG_MINIMAL; in mark()
1814 minimal = !(env->flags & REG_MINIMAL); in rep()
1818 minimal = !!(env->flags & REG_MINIMAL); in rep()
2103 env->flags &= ~REG_MINIMAL; in grp()
2105 env->flags |= REG_MINIMAL; in grp()
2198 env->flags |= REG_MINIMAL; in grp()
2200 env->flags &= ~REG_MINIMAL; in grp()
2672 env->flags |= REG_MINIMAL; in seq()
H A Dreglib.h79 …ASE|REG_NOSUB|REG_NEWLINE|REG_SHELL|REG_AUGMENTED|REG_LEFT|REG_LITERAL|REG_MINIMAL|REG_MULTIREF|RE…
/titanic_41/usr/src/lib/libast/common/include/
H A Dregex.h55 #define REG_MINIMAL 0x00000400 /* minimal match */ macro
/titanic_41/usr/src/lib/libast/amd64/include/ast/
H A Dregex.h37 #define REG_MINIMAL 0x00000400 /* minimal match */ macro
/titanic_41/usr/src/lib/libast/i386/include/ast/
H A Dregex.h37 #define REG_MINIMAL 0x00000400 /* minimal match */ macro
/titanic_41/usr/src/lib/libast/sparcv9/include/ast/
H A Dregex.h37 #define REG_MINIMAL 0x00000400 /* minimal match */ macro
/titanic_41/usr/src/lib/libast/sparc/include/ast/
H A Dregex.h37 #define REG_MINIMAL 0x00000400 /* minimal match */ macro
/titanic_41/usr/src/lib/libast/common/
H A DRELEASE746 02-08-12 regex/regnexec.c: fix REG_MINIMAL REX_DOT mb bug
879 01-11-20 regex/regnexec.c: fix REG_MINIMAL character class match bug
965 regex: change REG_MINIMAL to avoid negation -- much faster now