Lines Matching refs:PyTuple_GET_ITEM

2143         PyObject *item = PyTuple_GET_ITEM(args, i);  in product_new()
2151 PyObject *pool = PyTuple_GET_ITEM(pools, i - nargs); in product_new()
2229 pool = PyTuple_GET_ITEM(pools, i); in product_next()
2232 elem = PyTuple_GET_ITEM(pool, 0); in product_next()
2254 pool = PyTuple_GET_ITEM(pools, i); in product_next()
2259 elem = PyTuple_GET_ITEM(pool, 0); in product_next()
2261 oldelem = PyTuple_GET_ITEM(result, i); in product_next()
2266 elem = PyTuple_GET_ITEM(pool, indices[i]); in product_next()
2268 oldelem = PyTuple_GET_ITEM(result, i); in product_next()
2332 PyObject* indexObject = PyTuple_GET_ITEM(state, i); in product_setstate()
2338 pool = PyTuple_GET_ITEM(lz->pools, i); in product_setstate()
2356 PyObject *pool = PyTuple_GET_ITEM(lz->pools, i); in product_setstate()
2357 PyObject *element = PyTuple_GET_ITEM(pool, lz->indices[i]); in product_setstate()
2557 elem = PyTuple_GET_ITEM(pool, index); in combinations_next()
2599 elem = PyTuple_GET_ITEM(pool, index); in combinations_next()
2601 oldelem = PyTuple_GET_ITEM(result, i); in combinations_next()
2658 PyObject* indexObject = PyTuple_GET_ITEM(state, i); in combinations_setstate()
2676 PyObject *element = PyTuple_GET_ITEM(lz->pool, lz->indices[i]); in combinations_setstate()
2888 elem = PyTuple_GET_ITEM(pool, 0); in cwr_next()
2923 elem = PyTuple_GET_ITEM(pool, index); in cwr_next()
2927 oldelem = PyTuple_GET_ITEM(result, i); in cwr_next()
2983 PyObject* indexObject = PyTuple_GET_ITEM(state, i); in cwr_setstate()
2999 PyObject *element = PyTuple_GET_ITEM(lz->pool, lz->indices[i]); in cwr_setstate()
3232 elem = PyTuple_GET_ITEM(pool, index); in permutations_next()
3272 elem = PyTuple_GET_ITEM(pool, index); in permutations_next()
3274 oldelem = PyTuple_GET_ITEM(result, k); in permutations_next()
3359 PyObject* indexObject = PyTuple_GET_ITEM(indices, i); in permutations_setstate()
3372 PyObject* indexObject = PyTuple_GET_ITEM(cycles, i); in permutations_setstate()
3386 PyObject *element = PyTuple_GET_ITEM(po->pool, po->indices[i]); in permutations_setstate()
4422 PyObject *item = PyTuple_GET_ITEM(args, i); in zip_longest_new()
4494 it = PyTuple_GET_ITEM(lz->ittuple, i); in zip_longest_next()
4514 olditem = PyTuple_GET_ITEM(result, i); in zip_longest_next()
4523 it = PyTuple_GET_ITEM(lz->ittuple, i); in zip_longest_next()
4562 PyObject *elem = PyTuple_GET_ITEM(lz->ittuple, i); in zip_longest_reduce()