Searched refs:PEEK (Results 1 – 3 of 3) sorted by relevance
/illumos-gate/usr/src/lib/libc/port/regex/ |
H A D | regcomp.c | 162 #define PEEK() (*p->next) macro 166 #define SEE(c) (MORE() && PEEK() == (c)) 167 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b)) 178 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) 180 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) 452 c = PEEK(); in p_ere_exp() 486 if (isdigit((uch)PEEK())) { in p_ere_exp() 495 while (MORE() && PEEK() != '}') in p_ere_exp() 505 c = PEEK(); in p_ere_exp() 805 if (MORE() && isdigit((uch)PEEK())) { in p_simp_re() [all …]
|
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/ |
H A D | ppbuiltin.c | 281 #define PEEK(a,p) ((a>p)?*(a-1):(number?0:*(pp.outbuf+2*PPBUFSIZ-1))) in ppbuiltin() macro 292 while ((n = BACK(a, p)) && n != c || PEEK(a, p) == '\\'); in ppbuiltin() 303 else if (c == '#' && PEEK(a, p) == '\n') in ppbuiltin() 331 for (t = p, token = a, onumber = number; ppisidig(PEEK(a, p)) && a >= p; BACK(a, p)); in ppbuiltin()
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/ |
H A D | RELEASE | 298 08-08-19 sfio/sfpkrd.c: workaround macosx recv(PEEK) data consumption on non-socket
|