Home
last modified time | relevance | path

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

/freebsd/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) (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) in p_ere()
540 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
549 c = PEEK(); in p_ere_exp()
581 if (isdigit((uch)PEEK())) { in p_ere_exp()
590 while (MORE() && PEEK() != '}') in p_ere_exp()
[all …]
/freebsd/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) in p_ere()
413 (void)REQUIRE(!MORE() || !ISDIGIT((UCHAR_T)PEEK()), REG_BADRPT); in p_ere_exp()
422 c = PEEK(); in p_ere_exp()
454 if (ISDIGIT((UCHAR_T)PEEK())) { in p_ere_exp()
463 while (MORE() && PEEK() != '}') in p_ere_exp()
[all …]
/freebsd/lib/libc/regex/
H A Dregcomp.c170 #define PEEK() (*p->next) macro
174 #define SEE(c) (MORE() && PEEK() == (c))
175 #define SEETWO(a, b) (MORE2() && PEEK() == (a) && PEEK2() == (b))
187 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
189 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
543 (void)REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
557 c = PEEK(); in p_ere_exp()
599 if (isdigit((uch)PEEK())) { in p_ere_exp()
608 while (MORE() && PEEK() != '}') in p_ere_exp()
618 c = PEEK(); in p_ere_exp()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc2559 // PEEK* requests return resulting values through data pointer.
H A Dsanitizer_common_interceptors.inc3460 // Note that PEEK* requests assign different meaning to the return value.