Home
last modified time | relevance | path

Searched refs:tuplesize (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Python/
Dbltinmodule.c2638 Py_ssize_t tuplesize; member
2651 Py_ssize_t tuplesize; in zip_new() local
2670 tuplesize = PyTuple_GET_SIZE(args); in zip_new()
2673 ittuple = PyTuple_New(tuplesize); in zip_new()
2676 for (i=0; i < tuplesize; ++i) { in zip_new()
2687 result = PyTuple_New(tuplesize); in zip_new()
2692 for (i=0 ; i < tuplesize ; i++) { in zip_new()
2705 lz->tuplesize = tuplesize; in zip_new()
2733 Py_ssize_t tuplesize = lz->tuplesize; in zip_next() local
2739 if (tuplesize == 0) in zip_next()
[all …]
/third_party/python/Modules/
Ditertoolsmodule.c4535 Py_ssize_t tuplesize; member
4553 Py_ssize_t tuplesize; in zip_longest_new() local
4571 tuplesize = PyTuple_GET_SIZE(args); in zip_longest_new()
4574 ittuple = PyTuple_New(tuplesize); in zip_longest_new()
4577 for (i=0; i < tuplesize; i++) { in zip_longest_new()
4588 result = PyTuple_New(tuplesize); in zip_longest_new()
4593 for (i=0 ; i < tuplesize ; i++) { in zip_longest_new()
4606 lz->tuplesize = tuplesize; in zip_longest_new()
4607 lz->numactive = tuplesize; in zip_longest_new()
4637 Py_ssize_t tuplesize = lz->tuplesize; in zip_longest_next() local
[all …]