The word is increment. If you wan to keep adding adding 5 to a count you are incrementing the count. There are a few ways to do it and it also depends on the language that is being used.
PHP
$count = $count + 5;
$count++
C / C++
int count = 0;
count++;
Python
count += 5