Lines Matching refs:incount
827 if (incount > 0x007fffff) { /* NB: shift will overflow */\
829 rat = (rat == 0 ? 0x7fffffff : incount/rat); \
831 rat = (incount<<8) / outcount; \
868 long incount, outcount, checkpoint; in LZWEncode() local
883 incount = sp->enc_incount; in LZWEncode()
902 ent = *bp++; cc--; incount++; in LZWEncode()
905 c = *bp++; cc--; incount++; in LZWEncode()
963 incount = 0; in LZWEncode()
978 } else if (incount >= checkpoint) { in LZWEncode()
986 checkpoint = incount+CHECK_GAP; in LZWEncode()
991 incount = 0; in LZWEncode()
1008 sp->enc_incount = incount; in LZWEncode()