Lines Matching refs:cs
8837 int cs = 0; in hufEncode() local
8848 if (s == in[i] && cs < 255) { in hufEncode()
8849 cs++; in hufEncode()
8851 sendCode(hcode[s], cs, hcode[rlc], c, lc, out); in hufEncode()
8852 cs = 0; in hufEncode()
8862 sendCode(hcode[s], cs, hcode[rlc], c, lc, out); in hufEncode()
8893 unsigned char cs = (c >> lc); \
8895 if (out + cs > oe) return false; \
8900 while (cs-- > 0) *out++ = s; \
8924 unsigned char cs = (c >> lc); in getCode() local
8926 if (out + cs > oe) return false; in getCode()
8933 while (cs-- > 0) *out++ = s; in getCode()