Lines Matching refs:PyDict_GET_SIZE
1303 arg = PyDict_GET_SIZE(dict);
1748 assert(PyDict_GET_SIZE(u->u_cellvars) == 0);
1758 PyDict_GET_SIZE(u->u_cellvars));
2769 assert(PyDict_GET_SIZE(c->u->u_cellvars) == 0);
7826 Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict);
7845 Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict);
7951 int nlocals = (int)PyDict_GET_SIZE(c->u->u_varnames);
8130 int nlocals = (int)PyDict_GET_SIZE(c->u->u_varnames);
8131 int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars);
8132 int nfreevars = (int)PyDict_GET_SIZE(c->u->u_freevars);
8212 const int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars);
8217 const int nvars = ncellvars + (int)PyDict_GET_SIZE(c->u->u_varnames);
8299 int nlocals = (int)PyDict_GET_SIZE(c->u->u_varnames);
8300 int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars);
8301 int nfreevars = (int)PyDict_GET_SIZE(c->u->u_freevars);
8383 assert(PyDict_GET_SIZE(c->u->u_varnames) < INT_MAX);
8384 assert(PyDict_GET_SIZE(c->u->u_cellvars) < INT_MAX);
8385 assert(PyDict_GET_SIZE(c->u->u_freevars) < INT_MAX);
8386 int nlocals = (int)PyDict_GET_SIZE(c->u->u_varnames);
8387 int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars);
8388 int nfreevars = (int)PyDict_GET_SIZE(c->u->u_freevars);