Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
Dregcomp.c122 #define PEEK() (*p->next) macro
126 #define SEE(c) (MORE() && PEEK() == (c))
127 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
136 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
138 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
276 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
412 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
421 c = PEEK(); in p_ere_exp()
453 if (isdigit((uch)PEEK())) { in p_ere_exp()
462 while (MORE() && PEEK() != '}') in p_ere_exp()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc2329 // PEEK* requests return resulting values through data pointer.
Dsanitizer_common_interceptors.inc2483 // Note that PEEK* requests assign different meaning to the return value.