Home
last modified time | relevance | path

Searched refs:PyDict_GET_SIZE (Results 1 - 25 of 52) sorted by relevance

123

/third_party/python/Objects/clinic/
H A Dmoduleobject.c.h25 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in module___init__()
H A Dstructseq.c.h17 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in structseq_new()
H A Ddescrobject.c.h80 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in property_init()
H A Denumobject.c.h32 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in enum_new()
H A Dfuncobject.c.h35 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 2; in func_new()
H A Dcomplexobject.c.h110 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in complex_new()
/third_party/python/Modules/clinic/
H A Ditertoolsmodule.c.h62 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in itertools_groupby()
480 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in itertools_permutations()
519 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in itertools_accumulate()
646 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in itertools_count()
H A Dsocketmodule.c.h18 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in sock_initobj()
H A D_pickle.c.h114 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in _pickle_Pickler___init__()
334 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in _pickle_Unpickler___init__()
H A D_lzmamodule.c.h179 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in _lzma_LZMADecompressor___init__()
H A D_asynciomodule.c.h34 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in _asyncio_Future___init__()
314 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in _asyncio_Task___init__()
/third_party/python/Modules/
H A D_functoolsmodule.c121 if (pkw == NULL || PyDict_GET_SIZE(pkw) == 0) { in partial_new()
208 if (PyDict_GET_SIZE(pto->kw)) { in partial_vectorcall()
294 if (PyDict_GET_SIZE(pto->kw) == 0) { in partial_call()
818 kwds_size = kwds ? PyDict_GET_SIZE(kwds) : 0; in lru_cache_make_key()
1048 if (PyDict_GET_SIZE(self->cache) < self->maxsize || in bounded_lru_cache_wrapper()
1308 PyDict_GET_SIZE(self->cache)); in lru_cache_cache_info()
1312 PyDict_GET_SIZE(self->cache)); in lru_cache_cache_info()
/third_party/python/Include/cpython/
H A Dodictobject.h23 #define PyODict_SIZE(op) PyDict_GET_SIZE((op))
H A Ddictobject.h49 #define PyDict_GET_SIZE(mp) (assert(PyDict_Check(mp)),((PyDictObject *)mp)->ma_used) macro
/third_party/python/Modules/_io/clinic/
H A Dbufferedio.c.h410 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in _io_BufferedReader___init__()
464 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in _io_BufferedWriter___init__()
611 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in _io_BufferedRandom___init__()
H A Dtextio.c.h32 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 2; in _io_IncrementalNewlineDecoder___init__()
190 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in _io_TextIOWrapper___init__()
H A Dstringio.c.h263 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in _io_StringIO___init__()
H A Dwinconsoleio.c.h56 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; in _io__WindowsConsoleIO___init__()
H A Dbytesio.c.h491 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in _io_BytesIO___init__()
/third_party/python/Modules/_sha3/clinic/
H A Dsha3module.c.h23 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in py_sha3_new()
/third_party/python/Modules/_blake2/clinic/
H A Dblake2s_impl.c.h30 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in py_blake2s_new()
H A Dblake2b_impl.c.h30 Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; in py_blake2b_new()
/third_party/python/Objects/
H A Dcall.c140 if (kwargs == NULL || PyDict_GET_SIZE(kwargs) == 0) { in _PyObject_FastCallDictTstate()
244 if (kwargs == NULL || PyDict_GET_SIZE(kwargs) == 0) { in _PyVectorcall_Call()
967 Py_ssize_t nkwargs = PyDict_GET_SIZE(kwargs); in _PyStack_UnpackDict()
/third_party/python/Python/
H A Dcompile.c1303 arg = PyDict_GET_SIZE(dict); in compiler_add_o()
1748 assert(PyDict_GET_SIZE(u->u_cellvars) == 0); in compiler_enter_scope()
1758 PyDict_GET_SIZE(u->u_cellvars)); in compiler_enter_scope()
2769 assert(PyDict_GET_SIZE(c->u->u_cellvars) == 0); in compiler_class()
7826 Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict); in dict_keys_inorder()
7845 Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict); in consts_dict_keys_inorder()
7951 int nlocals = (int)PyDict_GET_SIZE(c->u->u_varnames); in compute_localsplus_info()
8130 int nlocals = (int)PyDict_GET_SIZE(c->u->u_varnames); in build_cellfixedoffsets()
8131 int ncellvars = (int)PyDict_GET_SIZE(c->u->u_cellvars); in build_cellfixedoffsets()
8132 int nfreevars = (int)PyDict_GET_SIZE( in build_cellfixedoffsets()
[all...]
H A Dgetargs.c1678 nkwargs = (kwargs == NULL) ? 0 : PyDict_GET_SIZE(kwargs); in vgetargskeywords()
2112 nkwargs = PyDict_GET_SIZE(kwargs); in vgetargskeywordsfast_impl()
2335 nkwargs = PyDict_GET_SIZE(kwargs); in _PyArg_UnpackKeywords()
2510 nkwargs = PyDict_GET_SIZE(kwargs); in _PyArg_UnpackKeywordsWithVararg()
2884 if (PyDict_GET_SIZE(kwargs) == 0) { in _PyArg_NoKeywords()

Completed in 27 milliseconds

123