Home | History | Annotate | Download | only in net

Lines Matching refs:uch

96 typedef unsigned char  uch;
97 typedef uch FAR uchf;
483 uch depth[2*L_CODES+1];
575 extern uch _length_code[];
576 extern uch _dist_code[];
578 extern const uch _length_code[];
579 extern const uch _dist_code[];
583 { uch cc = (c); \
590 { uch len = (length); \
2040 local const uch bl_order[BL_CODES]
2072 uch _dist_code[DIST_CODE_LEN];
2078 uch _length_code[MAX_MATCH-MIN_MATCH+1];
2162 const uch _dist_code[DIST_CODE_LEN] = {
2191 const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {
2281 put_byte(s, (uch)((w) & 0xff)); \
2282 put_byte(s, (uch)((ush)(w) >> 8)); \
2362 _length_code[length++] = (uch)code;
2370 _length_code[length-1] = (uch)code;
2377 _dist_code[dist++] = (uch)code;
2385 _dist_code[256 + dist++] = (uch)code;
2449 fprintf(header, "const uch _dist_code[DIST_CODE_LEN] = {\n");
2455 fprintf(header, "const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
2769 s->depth[node] = (uch) (MAX(s->depth[n], s->depth[m]) + 1);
3122 s->l_buf[s->last_lit++] = (uch)lc;
5744 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;