Home | History | Annotate | Download | only in test

Lines Matching refs:REP

237 def run_test(rep, msg, func, arg=None):
238 ## items = [None] * rep
239 items = range(rep)
251 print "%15s: %.2f us" % (msg, ((stop-start)*1e6/5/rep))
257 REP = 200000
259 run_test(REP, "int()", int)
260 run_test(REP, "int(999)", int)
261 run_test(REP, "c_int()", c_int)
262 run_test(REP, "c_int(999)", c_int)
263 run_test(REP, "c_int_S()", c_int_S)
264 run_test(REP, "c_int_S(999)", c_int_S)