Lines Matching refs:getArgInt

5253 def getArgInt(name, args, min, max, main=True):  function
5521 sysvals.cgtest = getArgInt('cgtest', value, 0, 1, False)
5540 sysvals.multitest['count'] = getArgInt('multi: n d (exec count)', nums[0], 2, 1000000, False)
5541 …sysvals.multitest['delay'] = getArgInt('multi: n d (delay between tests)', nums[1], 0, 3600, False)
5554 sysvals.x2delay = getArgInt('x2delay', value, 0, 60000, False)
5556 sysvals.predelay = getArgInt('predelay', value, 0, 60000, False)
5558 sysvals.postdelay = getArgInt('postdelay', value, 0, 60000, False)
5560 sysvals.max_graph_depth = getArgInt('maxdepth', value, 0, 1000, False)
5566 sysvals.rtcwaketime = getArgInt('rtcwake', value, 0, 3600, False)
5568 sysvals.setPrecision(getArgInt('timeprec', value, 0, 6, False))
5578 sysvals.bufsize = getArgInt('bufsize', value, 1, 1024*1024*8, False)
5773 sysvals.x2delay = getArgInt('-x2delay', args, 0, 60000)
5775 sysvals.predelay = getArgInt('-predelay', args, 0, 60000)
5777 sysvals.postdelay = getArgInt('-postdelay', args, 0, 60000)
5823 sysvals.max_graph_depth = getArgInt('-maxdepth', args, 0, 1000)
5833 sysvals.rtcwaketime = getArgInt('-rtcwake', val, 0, 3600, False)
5835 sysvals.setPrecision(getArgInt('-timeprec', args, 0, 6))
5841 sysvals.bufsize = getArgInt('-bufsize', args, 1, 1024*1024*8)
5843 sysvals.cgtest = getArgInt('-cgtest', args, 0, 1)
5888 sysvals.multitest['count'] = getArgInt('-multi n d (exec count)', args, 2, 1000000)
5889 sysvals.multitest['delay'] = getArgInt('-multi n d (delay between tests)', args, 0, 3600)