Lines Matching refs:me_key
333 if (ep->me_key == NULL || ep->me_key == key) in lookdict()
336 if (ep->me_key == dummy) in lookdict()
340 startkey = ep->me_key; in lookdict()
346 if (ep0 == mp->ma_table && ep->me_key == startkey) { in lookdict()
367 if (ep->me_key == NULL) in lookdict()
369 if (ep->me_key == key) in lookdict()
371 if (ep->me_hash == hash && ep->me_key != dummy) { in lookdict()
372 startkey = ep->me_key; in lookdict()
378 if (ep0 == mp->ma_table && ep->me_key == startkey) { in lookdict()
391 else if (ep->me_key == dummy && freeslot == NULL) in lookdict()
430 if (ep->me_key == NULL || ep->me_key == key) in lookdict_string()
432 if (ep->me_key == dummy) in lookdict_string()
435 if (ep->me_hash == hash && _PyString_Eq(ep->me_key, key)) in lookdict_string()
445 if (ep->me_key == NULL) in lookdict_string()
447 if (ep->me_key == key in lookdict_string()
449 && ep->me_key != dummy in lookdict_string()
450 && _PyString_Eq(ep->me_key, key))) in lookdict_string()
452 if (ep->me_key == dummy && freeslot == NULL) in lookdict_string()
498 _PyObject_GC_MAY_BE_TRACKED(ep[i].me_key)) in _PyDict_MaybeUntrack()
523 if (ep->me_key == NULL) in insertdict_by_entry()
526 assert(ep->me_key == dummy); in insertdict_by_entry()
529 ep->me_key = key; in insertdict_by_entry()
580 for (perturb = hash; ep->me_key != NULL; perturb >>= PERTURB_SHIFT) { in insertdict_clean()
586 ep->me_key = key; in insertdict_clean()
664 insertdict_clean(mp, ep->me_key, (long)ep->me_hash, in dictresize()
667 else if (ep->me_key != NULL) { /* dummy entry */ in dictresize()
669 assert(ep->me_key == dummy); in dictresize()
670 Py_DECREF(ep->me_key); in dictresize()
856 old_key = ep->me_key; in delitem_common()
858 ep->me_key = dummy; in delitem_common()
988 if (ep->me_key) { in PyDict_Clear()
990 Py_DECREF(ep->me_key); in PyDict_Clear()
1038 *pkey = ep[i].me_key; in PyDict_Next()
1066 *pkey = ep[i].me_key; in _PyDict_Next()
1083 if (ep->me_key) { in dict_dealloc()
1085 Py_DECREF(ep->me_key); in dict_dealloc()
1131 if (PyObject_Print((PyObject *)ep->me_key, fp, 0)!=0) { in dict_print()
1320 PyObject *key = ep[i].me_key; in dict_keys()
1402 key = ep[i].me_key; in dict_items()
1672 PyDict_GetItem(a, entry->me_key) == NULL)) { in PyDict_Merge()
1673 Py_INCREF(entry->me_key); in PyDict_Merge()
1675 if (insertdict(mp, entry->me_key, in PyDict_Merge()
1813 thiskey = a->ma_table[i].me_key; in characterize()
1942 PyObject *key = a->ma_table[i].me_key; in dict_equal()
2121 old_key = ep->me_key; in dict_pop()
2123 ep->me_key = dummy; in dict_pop()
2178 PyTuple_SET_ITEM(res, 0, ep->me_key); in dict_popitem()
2181 ep->me_key = dummy; in dict_popitem()
2640 key = ep[i].me_key; in dictiter_iternextkey()
2785 key = ep[i].me_key; in dictiter_iternextitem()