Lines Matching full:clas
74 int clas));
78 local block_state deflate_stored OF((deflate_state *s, int flush, int clas));
79 local block_state deflate_fast OF((deflate_state *s, int flush, int clas));
81 local block_state deflate_slow OF((deflate_state *s, int flush, int clas));
91 uInt longest_match OF((deflate_state *s, IPos cur_match, int clas));
93 local uInt longest_match OF((deflate_state *s, IPos cur_match, int clas));
287 strm->clas = 0;
826 if (strm->clas && s->class_bitmap == NULL) {
833 if (strm->clas && s->strategy == Z_RLE) {
844 (s, flush, strm->clas);
1075 local void class_set(s, offset, len, clas)
1079 int clas;
1083 Bytef class_byte_value = clas ? 0xff : 0x00;
1084 Bytef class_bit_value = clas ? 1 : 0;
1138 local uInt longest_match(s, cur_match, clas)
1141 int clas;
1190 if (s->class_bitmap && class_at(s, cur_match) != clas)
1266 class_at(s, match - s->window) == clas &&
1352 local uInt longest_match(s, cur_match, clas)
1355 int clas;
1540 class_set(s, s->strstart + s->lookahead, n, s->strm->clas);
1623 local block_state deflate_stored(s, flush, clas)
1626 int clas;
1682 local block_state deflate_fast(s, flush, clas)
1685 int clas;
1690 if (clas != 0) {
1725 s->match_length = longest_match (s, hash_head, clas);
1784 local block_state deflate_slow(s, flush, clas)
1787 int clas;
1795 if (clas == Z_CLASS_COOKIE) {
1832 if (clas == Z_CLASS_COOKIE && first) {
1834 } else if (clas == Z_CLASS_STANDARD &&
1842 s->match_length = longest_match (s, hash_head, clas);
1866 (clas == Z_CLASS_STANDARD || (clas == Z_CLASS_COOKIE &&