Home
last modified time | relevance | path

Searched refs:me_hash (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Objects/
Ddict-common.h6 Py_hash_t me_hash; member
Ddictobject.c510 CHECK(entry->me_hash == hash); in _PyDict_CheckConsistency()
514 CHECK(entry->me_hash != -1); in _PyDict_CheckConsistency()
800 if (ep->me_hash == hash) { in lookdict()
858 (ep->me_hash == hash && unicode_eq(ep->me_key, key))) { in lookdict_unicode()
901 (ep->me_hash == hash && unicode_eq(ep->me_key, key))) { in lookdict_unicode_nodummy()
946 (ep->me_hash == hash && unicode_eq(ep->me_key, key))) { in lookdict_split()
1091 ep->me_hash = hash; in insertdict()
1160 ep->me_hash = hash; in insert_to_emptydict()
1177 Py_hash_t hash = ep->me_hash; in build_indices()
1248 newentries[i].me_hash = ep->me_hash; in dictresize()
[all …]
/external/python/cpython2/Objects/
Ddictobject.c339 if (ep->me_hash == hash) { in lookdict()
371 if (ep->me_hash == hash && ep->me_key != dummy) { in lookdict()
435 if (ep->me_hash == hash && _PyString_Eq(ep->me_key, key)) in lookdict_string()
448 || (ep->me_hash == hash in lookdict_string()
530 ep->me_hash = (Py_ssize_t)hash; in insertdict_by_entry()
587 ep->me_hash = (Py_ssize_t)hash; in insertdict_clean()
664 insertdict_clean(mp, ep->me_key, (long)ep->me_hash, in dictresize()
1064 *phash = (long)(ep[i].me_hash); in _PyDict_Next()
1676 (long)entry->me_hash, in PyDict_Merge()
2164 i = ep->me_hash; in dict_popitem()
[all …]
/external/python/cpython2/Include/
Ddictobject.h55 Py_ssize_t me_hash; member