Searched defs:Assert (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DAssert.java27 // Assert.java : Handles assertions in a central fashion.
39 * The Assert class is used to test assertions and end the program
45 class Assert { class
64 // Assert that a parameter is nonnull.
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dbase64.c76 #define Assert(Cond) if (!(Cond)) abort() macro
162 Assert(output[0] < 64);
163 Assert(output[1] < 64);
164 Assert(output[2] < 64);
165 Assert(output[3] < 64);
185 Assert(output[0] < 64);
186 Assert(output[1] < 64);
187 Assert(output[2] < 64);
/illumos-gate/usr/src/boot/lib/libz/
H A Dzutil.h223 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
230 # define Assert(cond,msg) macro
/illumos-gate/usr/src/uts/common/zmod/
H A Dzutil.h250 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
257 # define Assert(cond,msg) macro
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c105 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
112 # define Assert(cond,msg) macro
837 Assert(strm->avail_out > 0, "bug2");
972 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
978 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
981 Assert(cur_match < s->strstart, "no future");
1003 Assert(scan[2] == match[2], "scan[2]?");
1014 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1034 Assert(*scan == *match, "match[2]?");
1046 Assert(sca
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c243 #define Assert(cond, msg) { if (!(cond)) z_error(msg); } macro
251 #define Assert(cond, msg) ((cond) ? ((void)0) : panic(msg)) macro
253 #define Assert(cond, msg) ((void)0) macro
975 Assert(length <= s->window_size, "dict copy");
1250 Assert(strm->avail_out > 0, "bug2");
1492 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1504 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD,
1508 Assert(cur_match <= s->strstart, "no future");
1537 Assert(scan[2] == match[2], "scan[2]?");
1548 Assert(sca
[all...]

Completed in 78 milliseconds