Home
last modified time | relevance | path

Searched refs:startkey (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Objects/
Dsetobject.c73 PyObject *startkey = entry->key; in set_lookkey() local
74 assert(startkey != dummy); in set_lookkey()
75 if (startkey == key) in set_lookkey()
77 if (PyUnicode_CheckExact(startkey) in set_lookkey()
79 && _PyUnicode_EQ(startkey, key)) in set_lookkey()
82 Py_INCREF(startkey); in set_lookkey()
83 cmp = PyObject_RichCompareBool(startkey, key, Py_EQ); in set_lookkey()
84 Py_DECREF(startkey); in set_lookkey()
87 if (table != so->table || entry->key != startkey) in set_lookkey()
132 PyObject *startkey = entry->key; in set_add_entry() local
[all …]
Ddictobject.c823 PyObject *startkey = ep->me_key; in lookdict() local
824 Py_INCREF(startkey); in lookdict()
825 int cmp = PyObject_RichCompareBool(startkey, key, Py_EQ); in lookdict()
826 Py_DECREF(startkey); in lookdict()
831 if (dk == mp->ma_keys && ep->me_key == startkey) { in lookdict()