Lines Matching refs:newcount
644 newcount = count + other[elem]
645 if newcount > 0:
646 result[elem] = newcount
663 newcount = count - other[elem]
664 if newcount > 0:
665 result[elem] = newcount
683 newcount = other_count if count < other_count else count
684 if newcount > 0:
685 result[elem] = newcount
703 newcount = count if count < other_count else other_count
704 if newcount > 0:
705 result[elem] = newcount