Home | History | Annotate | Download | only in zlib

Lines Matching refs:Assert

220     Assert (code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
256 Assert(length > 0 && length <= 15, "invalid length");
326 Assert (length == 256, "tr_static_init: length != 256");
341 Assert (dist == 256, "tr_static_init: dist != 256");
349 Assert (dist == 256, "tr_static_init: 256 + dist != 512");
393 Assert (header != NULL, "Can't open trees.h");
776 Assert(count >= 3 && count <= 6, " 3_6?");
837 Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
838 Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
931 Assert (code < D_CODES, "bad d_code");
943 Assert(s->pending < 2 * (s->lit_bufsize + sx), "pendingBuf overflow");
945 Assert(s->pending < s->lit_bufsize + sx, "pendingBuf overflow");
1040 Assert(buf != (char*)0, "lost buf");
1075 Assert (s->compressed_len == s->bits_sent, "bad compressed size");
1111 Assert((ush)dist < (ush)MAX_DIST(s) &&