Lines Matching full:istep
220 istep = int(step)221 if istep != step:223 if istep > 0:224 n = (width + istep - 1) // istep225 elif istep < 0:226 n = (width + istep + 1) // istep234 return istart + istep*self._randbelow(n)235 return istart + istep*int(self.random() * n)