Lines Matching refs:getArgInt

5748 def getArgInt(name, args, min, max, main=True):  function
6169 sysvals.cgtest = getArgInt('cgtest', value, 0, 1, False)
6188 sysvals.multitest['count'] = getArgInt('multi: n d (exec count)', nums[0], 2, 1000000, False)
6189 …sysvals.multitest['delay'] = getArgInt('multi: n d (delay between tests)', nums[1], 0, 3600, False)
6202 sysvals.x2delay = getArgInt('x2delay', value, 0, 60000, False)
6204 sysvals.predelay = getArgInt('predelay', value, 0, 60000, False)
6206 sysvals.postdelay = getArgInt('postdelay', value, 0, 60000, False)
6208 sysvals.max_graph_depth = getArgInt('maxdepth', value, 0, 1000, False)
6214 sysvals.rtcwaketime = getArgInt('rtcwake', value, 0, 3600, False)
6216 sysvals.setPrecision(getArgInt('timeprec', value, 0, 6, False))
6226 sysvals.bufsize = getArgInt('bufsize', value, 1, 1024*1024*8, False)
6428 sysvals.x2delay = getArgInt('-x2delay', args, 0, 60000)
6430 sysvals.predelay = getArgInt('-predelay', args, 0, 60000)
6432 sysvals.postdelay = getArgInt('-postdelay', args, 0, 60000)
6489 sysvals.max_graph_depth = getArgInt('-maxdepth', args, 0, 1000)
6499 sysvals.rtcwaketime = getArgInt('-rtcwake', val, 0, 3600, False)
6501 sysvals.setPrecision(getArgInt('-timeprec', args, 0, 6))
6507 sysvals.bufsize = getArgInt('-bufsize', args, 1, 1024*1024*8)
6509 sysvals.cgtest = getArgInt('-cgtest', args, 0, 1)
6560 sysvals.multitest['count'] = getArgInt('-multi n d (exec count)', args, 2, 1000000)
6561 sysvals.multitest['delay'] = getArgInt('-multi n d (delay between tests)', args, 0, 3600)