Home
last modified time | relevance | path

Searched refs:me_key (Results 1 – 2 of 2) 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/cpython2/Include/
Ddictobject.h56 PyObject *me_key; member