Home
last modified time | relevance | path

Searched refs:me_key (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Objects/
Ddictobject.c333 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()
[all …]
/external/python/cpython3/Objects/
Ddictobject.c504 PyObject *key = entry->me_key; in _PyDict_CheckConsistency()
597 Py_XDECREF(entries[i].me_key); in free_keys_object()
691 Py_INCREF(entry->me_key); in clone_combined_dict()
795 assert(ep->me_key != NULL); in lookdict()
796 if (ep->me_key == key) { in lookdict()
801 PyObject *startkey = ep->me_key; in lookdict()
809 if (dk == mp->ma_keys && ep->me_key == startkey) { in lookdict()
855 assert(ep->me_key != NULL); in lookdict_unicode()
856 assert(PyUnicode_CheckExact(ep->me_key)); in lookdict_unicode()
857 if (ep->me_key == key || in lookdict_unicode()
[all …]
Ddict-common.h7 PyObject *me_key; member
/external/python/cpython2/Include/
Ddictobject.h56 PyObject *me_key; member
/external/python/cpython3/Modules/
D_pickle.c606 PyObject *me_key; member
769 Py_XINCREF(self->mt_table[i].me_key); in PyMemoTable_Copy()
789 Py_XDECREF(self->mt_table[i].me_key); in PyMemoTable_Clear()
821 if (entry->me_key == NULL || entry->me_key == key) in _PyMemoTable_Lookup()
827 if (entry->me_key == NULL || entry->me_key == key) in _PyMemoTable_Lookup()
871 if (oldentry->me_key != NULL) { in _PyMemoTable_ResizeTable()
876 newentry = _PyMemoTable_Lookup(self, oldentry->me_key); in _PyMemoTable_ResizeTable()
877 newentry->me_key = oldentry->me_key; in _PyMemoTable_ResizeTable()
892 if (entry->me_key == NULL) in PyMemoTable_Get()
906 if (entry->me_key != NULL) { in PyMemoTable_Set()
[all …]