Lines Matching refs:lc
1021 int _tr_tally (s, dist, lc)
1024 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
1027 s->l_buf[s->last_lit++] = (uch)lc;
1029 /* lc is the unmatched char */
1030 s->dyn_ltree[lc].Freq++;
1033 /* Here, lc is the match length - MIN_MATCH */
1036 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
1039 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
1077 int lc; /* match length or unmatched char (if dist == 0) */
1084 lc = s->l_buf[lx++];
1086 send_code(s, lc, ltree); /* send a literal byte */
1087 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
1089 /* Here, lc is the match length - MIN_MATCH */
1090 code = _length_code[lc];
1094 lc -= base_length[code];
1095 send_bits(s, lc, extra); /* send the extra length bits */