Home | History | Annotate | Download | only in zlib

Lines Matching full:uch

70 local const uch bl_order[BL_CODES]
102 uch _dist_code[DIST_CODE_LEN];
108 uch _length_code[MAX_MATCH-MIN_MATCH+1];
181 put_byte(s, (uch)((w) & 0xff)); \
182 put_byte(s, (uch)((ush)(w) >> 8)); \
264 _length_code[length++] = (uch)code;
272 _length_code[length-1] = (uch)code;
279 _dist_code[dist++] = (uch)code;
287 _dist_code[256 + dist++] = (uch)code;
351 fprintf(header, "const uch _dist_code[DIST_CODE_LEN] = {\n");
357 fprintf(header, "const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
677 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
1028 s->l_buf[s->last_lit++] = (uch)lc;