HomeSort by: relevance | last modified time | path
    Searched defs:Assert (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/net/
base64.c 64 #include <assert.h>
73 #define Assert(Cond) if (!(Cond)) abort()
164 Assert(output[0] < 64);
165 Assert(output[1] < 64);
166 Assert(output[2] < 64);
167 Assert(output[3] < 64);
189 Assert(output[0] < 64);
190 Assert(output[1] < 64);
191 Assert(output[2] < 64);
  /src/common/dist/zlib/
zutil.h 238 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
245 # define Assert(cond,msg)
  /src/sys/net/
zlib.c 256 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
263 # define Assert(cond,msg)
1164 Assert(strm->avail_out > 0, "bug2");
1383 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1394 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1397 Assert(cur_match < s->strstart, "no future");
1419 Assert(scan[2] == match[2], "scan[2]?");
1430 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1450 Assert(*scan == *match, "match[2]?");
1462 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan")
    [all...]

Completed in 13 milliseconds