Searched refs:PEEK (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c250 #define PEEK() (*p->next) macro
254 #define SEE(c) (MORE() && PEEK() == (c))
255 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
264 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
266 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
404 while (MORE() && (c = PEEK()) != '|' && c != stop)
540 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
549 c = PEEK();
581 if (isdigit((uch)PEEK())) {
590 while (MORE() && PEEK() !
[all...]
/freebsd-11-stable/contrib/nvi/regex/
H A Dregcomp.c137 #define PEEK() (*p->next) macro
141 #define SEE(c) (MORE() && PEEK() == (c))
142 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
151 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
153 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
305 while (MORE() && (c = PEEK()) != '|' && c != stop)
413 (void)REQUIRE(!MORE() || !ISDIGIT((UCHAR_T)PEEK()), REG_BADRPT);
422 c = PEEK();
454 if (ISDIGIT((UCHAR_T)PEEK())) {
463 while (MORE() && PEEK() !
[all...]
/freebsd-11-stable/lib/libc/regex/
H A Dregcomp.c166 #define PEEK() (*p->next) macro
170 #define SEE(c) (MORE() && PEEK() == (c))
171 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
182 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
184 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
442 (void)REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
455 c = PEEK();
487 if (isdigit((uch)PEEK())) {
496 while (MORE() && PEEK() != '}')
506 c = PEEK();
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3250 // Note that PEEK* requests assign different meaning to the return value.

Completed in 118 milliseconds