Searched refs:_Py_dict_lookup (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Include/internal/ |
H A D | pycore_dict.h | 60 /* _Py_dict_lookup() returns index of entry which can be used like DK_ENTRIES(dk)[index]. 63 extern Py_ssize_t _Py_dict_lookup(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr);
|
/third_party/python/Objects/ |
H A D | dictobject.c | 1036 _Py_dict_lookup() is general-purpose, and may return DKIX_ERROR if (and only if) a 1041 _Py_dict_lookup(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr) in _Py_dict_lookup() function 1236 Py_ssize_t ix = _Py_dict_lookup(mp, key, hash, &old_value); in insertdict() 1678 ix = _Py_dict_lookup(mp, key, hash, &value); in PyDict_GetItem() 1741 return _Py_dict_lookup(mp, key, hash, value); in _PyDict_GetItemHint() 1760 ix = _Py_dict_lookup(mp, key, hash, &value); in _PyDict_GetItem_KnownHash() 1789 ix = _Py_dict_lookup(mp, key, hash, &value); in PyDict_GetItemWithError() 1854 ix = _Py_dict_lookup(globals, key, hash, &value); in _PyDict_LoadGlobal() 1861 ix = _Py_dict_lookup(builtins, key, hash, &value); in _PyDict_LoadGlobal() 2020 ix = _Py_dict_lookup(m in _PyDict_DelItem_KnownHash() [all...] |
H A D | odictobject.c | 43 While _Py_dict_lookup() does not give us the index into the array, 45 be to refactor _Py_dict_lookup() to provide the index, explicitly exposing 470 #include "pycore_dict.h" // _Py_dict_lookup() 536 ix = _Py_dict_lookup((PyDictObject *)od, key, hash, &value); in _odict_get_index_raw()
|
Completed in 12 milliseconds