Lines Matching refs:LOOPS
35 LOOPS = 50000
60 def main(loops=LOOPS):
61 benchtime, stones = pystones(loops)
63 (__version__, loops, benchtime)
67 def pystones(loops=LOOPS):
68 return Proc0(loops)
79 def Proc0(loops=LOOPS):
90 for i in range(loops):
106 for i in range(loops):
134 loopsPerBenchtime = (loops / benchtime)
265 try: loops = int(sys.argv[1])
269 loops = LOOPS
270 main(loops)