Lines Matching refs:newcount
801 newcount = count + other[elem]
802 if newcount > 0:
803 result[elem] = newcount
820 newcount = count - other[elem]
821 if newcount > 0:
822 result[elem] = newcount
840 newcount = other_count if count < other_count else count
841 if newcount > 0:
842 result[elem] = newcount
860 newcount = count if count < other_count else other_count
861 if newcount > 0:
862 result[elem] = newcount