Home | History | Annotate | Download | only in zlib

Lines Matching refs:uch

73 local const uch bl_order[BL_CODES]
100 uch _dist_code[DIST_CODE_LEN];
106 uch _length_code[MAX_MATCH-MIN_MATCH+1];
147 put_byte(s, (uch)((w) & 0xff)); \
148 put_byte(s, (uch)((ush)(w) >> 8)); \
323 _length_code[length++] = (uch)code;
331 _length_code[length - 1] = (uch)code;
338 _dist_code[dist++] = (uch)code;
346 _dist_code[256 + dist++] = (uch)code;
409 fprintf(header, "const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {\n");
416 "const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
682 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
1098 s->l_buf[s->sym_next++] = (uch)lc;
1100 s->sym_buf[s->sym_next++] = (uch)dist;
1101 s->sym_buf[s->sym_next++] = (uch)(dist >> 8);
1102 s->sym_buf[s->sym_next++] = (uch)lc;