Home | History | Annotate | Download | only in zlib

Lines Matching refs:lc

1026 int ZLIB_INTERNAL _tr_tally (s, dist, lc)
1029 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
1032 s->l_buf[s->last_lit++] = (uch)lc;
1034 /* lc is the unmatched char */
1035 s->dyn_ltree[lc].Freq++;
1038 /* Here, lc is the match length - MIN_MATCH */
1041 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
1044 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
1082 int lc; /* match length or unmatched char (if dist == 0) */
1089 lc = s->l_buf[lx++];
1091 send_code(s, lc, ltree); /* send a literal byte */
1092 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
1094 /* Here, lc is the match length - MIN_MATCH */
1095 code = _length_code[lc];
1099 lc -= base_length[code];
1100 send_bits(s, lc, extra); /* send the extra length bits */