Searched refs:DUPMAX (Results 1 - 5 of 5) sorted by relevance

/freebsd-10-stable/contrib/nvi/regex/
H A Dutils.h43 #define DUPMAX _POSIX2_RE_DUP_MAX /* xxx is this right? */ macro
44 #define INFINITY (DUPMAX + 1)
H A Dregcomp.c691 while (MORE() && ISDIGIT((UCHAR_T)PEEK()) && count <= DUPMAX) {
696 (void)REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);
/freebsd-10-stable/lib/libc/regex/
H A Dutils.h38 #define DUPMAX _POSIX2_RE_DUP_MAX /* xxx is this right? */ macro
39 #define INFINITY (DUPMAX + 1)
H A Dregcomp.c703 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
708 (void)REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);
/freebsd-10-stable/contrib/llvm/lib/Support/
H A Dregcomp.c141 #define DUPMAX _POSIX2_RE_DUP_MAX macro
143 #define DUPMAX 255 macro
145 #define INFINITY (DUPMAX + 1)
645 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
650 REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);

Completed in 57 milliseconds