Home
last modified time | relevance | path

Searched refs:niters (Results 1 – 4 of 4) sorted by relevance

/external/autotest/client/tests/rmaptest/src/
Drmap-test.c22 int niters; variable
124 for (iter = 0; iter < niters; iter++) { in child()
133 printf("%d/%d\n", iter, niters); in child()
159 niters = strtol(optarg, NULL, 10); in main()
/external/python/cpython2/Tools/ccbench/
Dccbench.py165 niters = 0
179 return niters, duration
180 niters += step
184 return niters, duration
/external/python/cpython3/Tools/ccbench/
Dccbench.py163 niters = 0
177 return niters, duration
178 niters += step
182 return niters, duration
/external/python/cpython3/Python/
Dbltinmodule.c1295 Py_ssize_t niters, nargs, i; in map_next() local
1298 niters = PyTuple_GET_SIZE(lz->iters); in map_next()
1299 if (niters <= (Py_ssize_t)Py_ARRAY_LENGTH(small_stack)) { in map_next()
1303 stack = PyMem_Malloc(niters * sizeof(stack[0])); in map_next()
1311 for (i=0; i < niters; i++) { in map_next()