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.c471 PyObject *key = entry->me_key; in _PyDict_CheckConsistency()
558 Py_XDECREF(entries[i].me_key); in free_keys_object()
645 Py_INCREF(entry->me_key); in clone_combined_dict()
749 assert(ep->me_key != NULL); in lookdict()
750 if (ep->me_key == key) { in lookdict()
755 PyObject *startkey = ep->me_key; in lookdict()
763 if (dk == mp->ma_keys && ep->me_key == startkey) { in lookdict()
809 assert(ep->me_key != NULL); in lookdict_unicode()
810 assert(PyUnicode_CheckExact(ep->me_key)); in lookdict_unicode()
811 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.c594 PyObject *me_key; member
751 Py_XINCREF(self->mt_table[i].me_key); in PyMemoTable_Copy()
771 Py_XDECREF(self->mt_table[i].me_key); in PyMemoTable_Clear()
803 if (entry->me_key == NULL || entry->me_key == key) in _PyMemoTable_Lookup()
809 if (entry->me_key == NULL || entry->me_key == key) in _PyMemoTable_Lookup()
853 if (oldentry->me_key != NULL) { in _PyMemoTable_ResizeTable()
858 newentry = _PyMemoTable_Lookup(self, oldentry->me_key); in _PyMemoTable_ResizeTable()
859 newentry->me_key = oldentry->me_key; in _PyMemoTable_ResizeTable()
874 if (entry->me_key == NULL) in PyMemoTable_Get()
888 if (entry->me_key != NULL) { in PyMemoTable_Set()
[all …]