Searched refs:insertdict (Results 1 - 1 of 1) sorted by relevance
/third_party/python/Objects/ |
H A D | dictobject.c | 1226 insertdict(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject *value) in insertdict() function 1315 // Same to insertdict but specialized for ma_keys = Py_EMPTY_KEYS. 1885 /* insertdict() handles any resizing that might be necessary */ in _PyDict_SetItem_Take2() 1886 return insertdict(mp, key, hash, value); in _PyDict_SetItem_Take2() 1929 /* insertdict() handles any resizing that might be necessary */ in _PyDict_SetItem_KnownHash() 1930 return insertdict(mp, key, hash, value); in _PyDict_SetItem_KnownHash() 2294 if (insertdict(mp, key, hash, value)) { in _PyDict_FromKeys() 2315 if (insertdict(mp, key, hash, value)) { in _PyDict_FromKeys() 2897 err = insertdict(mp, key, hash, value); in dict_merge() 2904 err = insertdict(m in dict_merge() [all...] |
Completed in 5 milliseconds