Lines Matching refs:lc
1022 int _tr_tally (s, dist, lc)
1025 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
1028 s->l_buf[s->last_lit++] = (uch)lc;
1030 /* lc is the unmatched char */
1031 s->dyn_ltree[lc].Freq++;
1034 /* Here, lc is the match length - MIN_MATCH */
1037 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
1040 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
1078 int lc; /* match length or unmatched char (if dist == 0) */
1085 lc = s->l_buf[lx++];
1087 send_code(s, lc, ltree); /* send a literal byte */
1088 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
1090 /* Here, lc is the match length - MIN_MATCH */
1091 code = _length_code[lc];
1095 lc -= base_length[code];
1096 send_bits(s, lc, extra); /* send the extra length bits */