Home
last modified time | relevance | path

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

/bionic/libc/upstream-netbsd/libc/regex/
Dregcomp.c1142 # define REP(f, t) ((f)*8 + (t)) in repeat() macro
1157 switch (REP(MAP(from), MAP(to))) { in repeat()
1158 case REP(0, 0): /* must be user doing this */ in repeat()
1161 case REP(0, 1): /* as x{1,1}? */ in repeat()
1162 case REP(0, N): /* as x{1,n}? */ in repeat()
1163 case REP(0, INF): /* as x{1,}? */ in repeat()
1173 case REP(1, 1): /* trivial case */ in repeat()
1176 case REP(1, N): /* as x?x{1,n-1} */ in repeat()
1188 case REP(1, INF): /* as x+ */ in repeat()
1192 case REP(N, N): /* as xx{m-1,n-1} */ in repeat()
[all …]