Lines Matching refs:lc
972 unsigned lc /* match length-MIN_MATCH or unmatched char (if dist==0) */ argument
976 s->l_buf[s->last_lit++] = (uch)lc;
979 s->dyn_ltree[lc].Freq++;
985 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
988 s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
1025 int lc; /* match length or unmatched char (if dist == 0) */ local
1032 lc = s->l_buf[lx++];
1034 send_code(s, lc, ltree); /* send a literal byte */
1035 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
1038 code = length_code[lc];
1042 lc -= base_length[code];
1043 send_bits(s, lc, extra); /* send the extra length bits */