Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ditertoolsmodule.c3821 Py_ssize_t numactive; member
3889 lz->numactive = tuplesize; in izip_longest_new()
3927 if (lz->numactive == 0) in izip_longest_next()
3939 lz->numactive -= 1; in izip_longest_next()
3940 if (lz->numactive == 0 || PyErr_Occurred()) { in izip_longest_next()
3941 lz->numactive = 0; in izip_longest_next()
3968 lz->numactive -= 1; in izip_longest_next()
3969 if (lz->numactive == 0 || PyErr_Occurred()) { in izip_longest_next()
3970 lz->numactive = 0; in izip_longest_next()
/external/python/cpython3/Modules/
Ditertoolsmodule.c4339 Py_ssize_t numactive; member
4408 lz->numactive = tuplesize; in zip_longest_new()
4446 if (lz->numactive == 0) in zip_longest_next()
4458 lz->numactive -= 1; in zip_longest_next()
4459 if (lz->numactive == 0 || PyErr_Occurred()) { in zip_longest_next()
4460 lz->numactive = 0; in zip_longest_next()
4487 lz->numactive -= 1; in zip_longest_next()
4488 if (lz->numactive == 0 || PyErr_Occurred()) { in zip_longest_next()
4489 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.c1018 int numactive = 0; in builtin_map() local
1033 ++numactive; in builtin_map()
1053 if (numactive == 0) { in builtin_map()