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.c244 #define PEEK() (*p->next) macro
248 #define SEE(c) (MORE() && PEEK() == (c))
249 #define SEETWO(a, b) (MORE2() && PEEK() == (a) && PEEK2() == (b))
258 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
260 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
398 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
532 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
541 c = PEEK(); in p_ere_exp()
573 if (isdigit((uch)PEEK())) { in p_ere_exp()
582 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.inc2562 // PEEK* requests return resulting values through data pointer.
H A Dsanitizer_common_interceptors.inc3618 // Note that PEEK* requests assign different meaning to the return value.