Lines Matching refs:incount
834 if (incount > 0x007fffff) { /* NB: shift will overflow */\
836 rat = (rat == 0 ? 0x7fffffff : incount/rat); \
838 rat = (incount<<8) / outcount; \
877 long incount, outcount, checkpoint; in LZWEncode() local
893 incount = sp->enc_incount; in LZWEncode()
912 ent = *bp++; cc--; incount++; in LZWEncode()
915 c = *bp++; cc--; incount++; in LZWEncode()
973 incount = 0; in LZWEncode()
988 } else if (incount >= checkpoint) { in LZWEncode()
996 checkpoint = incount+CHECK_GAP; in LZWEncode()
1001 incount = 0; in LZWEncode()
1018 sp->enc_incount = incount; in LZWEncode()