Searched defs:REQUIRE (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libresolv2/include/isc/
H A Dassertions.h68 #define REQUIRE(cond) \ macro
77 #define REQUIRE(cond) ((void) (cond)) macro
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dregcomp.c144 #define REQUIRE(co, e) ((co) || seterr(p, e)) macro
145 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
146 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
147 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
293 (void) REQUIRE(HERE() != conc, REG_BADPAT);
339 (void) REQUIRE(MORE(), REG_EPAREN);
395 (void) REQUIRE(MORE(), REG_EESCAPE);
410 (void) REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
428 (void) REQUIRE(!wascaret, REG_BADRPT);
455 (void) REQUIRE(coun
[all...]

Completed in 72 milliseconds