Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ditertoolsmodule.c3831 Py_ssize_t numactive; member
3899 lz->numactive = tuplesize; in izip_longest_new()
3937 if (lz->numactive == 0) in izip_longest_next()
3949 lz->numactive -= 1; in izip_longest_next()
3950 if (lz->numactive == 0 || PyErr_Occurred()) { in izip_longest_next()
3951 lz->numactive = 0; in izip_longest_next()
3978 lz->numactive -= 1; in izip_longest_next()
3979 if (lz->numactive == 0 || PyErr_Occurred()) { in izip_longest_next()
3980 lz->numactive = 0; in izip_longest_next()
/external/python/cpython3/Modules/
Ditertoolsmodule.c4316 Py_ssize_t numactive; member
4384 lz->numactive = tuplesize; in zip_longest_new()
4422 if (lz->numactive == 0) in zip_longest_next()
4434 lz->numactive -= 1; in zip_longest_next()
4435 if (lz->numactive == 0 || PyErr_Occurred()) { in zip_longest_next()
4436 lz->numactive = 0; in zip_longest_next()
4463 lz->numactive -= 1; in zip_longest_next()
4464 if (lz->numactive == 0 || PyErr_Occurred()) { in zip_longest_next()
4465 lz->numactive = 0; in zip_longest_next()
/external/deqp/external/openglcts/modules/gles31/
Des31cExplicitUniformLocationTest.cpp1580 glw::GLint numactive; in runExecuteProgram() local
1582 &numactive); in runExecuteProgram()
1583 if (numactive) in runExecuteProgram()
1585 std::vector<glw::GLuint> indices(numactive, 0); in runExecuteProgram()
1591 glUniformSubroutinesuiv(program.stages[stage], numactive, &indices[0]); in runExecuteProgram()
/external/python/cpython2/Python/
Dbltinmodule.c1017 int numactive = 0; in builtin_map() local
1032 ++numactive; in builtin_map()
1052 if (numactive == 0) { in builtin_map()