Lines Matching refs:newcount
760 newcount = count + other[elem]
761 if newcount > 0:
762 result[elem] = newcount
779 newcount = count - other[elem]
780 if newcount > 0:
781 result[elem] = newcount
799 newcount = other_count if count < other_count else count
800 if newcount > 0:
801 result[elem] = newcount
819 newcount = count if count < other_count else other_count
820 if newcount > 0:
821 result[elem] = newcount