Lines Matching refs:newcount
823 newcount = count + other[elem]
824 if newcount > 0:
825 result[elem] = newcount
842 newcount = count - other[elem]
843 if newcount > 0:
844 result[elem] = newcount
862 newcount = other_count if count < other_count else count
863 if newcount > 0:
864 result[elem] = newcount
882 newcount = count if count < other_count else other_count
883 if newcount > 0:
884 result[elem] = newcount