Home
last modified time | relevance | path

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

/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregcomp.c1145 # define REP(f, t) ((f)*8 + (t)) in repeat() macro
1160 switch (REP(MAP(from), MAP(to))) { in repeat()
1161 case REP(0, 0): /* must be user doing this */ in repeat()
1164 case REP(0, 1): /* as x{1,1}? */ in repeat()
1165 case REP(0, N): /* as x{1,n}? */ in repeat()
1166 case REP(0, INF): /* as x{1,}? */ in repeat()
1176 case REP(1, 1): /* trivial case */ in repeat()
1179 case REP(1, N): /* as x?x{1,n-1} */ in repeat()
1191 case REP(1, INF): /* as x+ */ in repeat()
1195 case REP(N, N): /* as xx{m-1,n-1} */ in repeat()
[all …]