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.c477 assert(entry->me_hash == hash); in _PyDict_CheckConsistency()
481 assert(entry->me_hash != -1); in _PyDict_CheckConsistency()
754 if (ep->me_hash == hash) { in lookdict()
812 (ep->me_hash == hash && unicode_eq(ep->me_key, key))) { in lookdict_unicode()
855 (ep->me_hash == hash && unicode_eq(ep->me_key, key))) { in lookdict_unicode_nodummy()
900 (ep->me_hash == hash && unicode_eq(ep->me_key, key))) { in lookdict_split()
1045 ep->me_hash = hash; in insertdict()
1095 Py_hash_t hash = ep->me_hash; in build_indices()
1166 newentries[i].me_hash = ep->me_hash; in dictresize()
1692 *phash = entry_ptr->me_hash; in _PyDict_Next()
[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