Lines Matching refs:pools
2219 PyObject *pools; /* tuple of pool tuples */
2232 PyObject *pools = NULL;
2272 pools = PyTuple_New(npools);
2273 if (pools == NULL)
2281 PyTuple_SET_ITEM(pools, i, pool);
2285 PyObject *pool = PyTuple_GET_ITEM(pools, i - nargs);
2287 PyTuple_SET_ITEM(pools, i, pool);
2296 lz->pools = pools;
2306 Py_XDECREF(pools);
2314 Py_XDECREF(lz->pools);
2327 res += PyTuple_GET_SIZE(lz->pools) * sizeof(Py_ssize_t);
2336 Py_VISIT(lz->pools);
2347 PyObject *pools = lz->pools;
2349 Py_ssize_t npools = PyTuple_GET_SIZE(pools);
2363 pool = PyTuple_GET_ITEM(pools, i);
2393 pool = PyTuple_GET_ITEM(pools, i);
2434 return Py_BuildValue("OO", Py_TYPE(lz), lz->pools);
2442 n = PyTuple_GET_SIZE(lz->pools);
2454 return Py_BuildValue("OON", Py_TYPE(lz), lz->pools, indices);
2464 n = PyTuple_GET_SIZE(lz->pools);
2477 pool = PyTuple_GET_ITEM(lz->pools, i);
2495 PyObject *pool = PyTuple_GET_ITEM(lz->pools, i);