Searched refs:len_self (Results 1 – 2 of 2) sorted by relevance
4290 Py_ssize_t len_self, len_other; in dictview_richcompare() local4301 len_self = PyObject_Size(self); in dictview_richcompare()4302 if (len_self < 0) in dictview_richcompare()4313 if (len_self == len_other) in dictview_richcompare()4320 if (len_self < len_other) in dictview_richcompare()4325 if (len_self <= len_other) in dictview_richcompare()4330 if (len_self > len_other) in dictview_richcompare()4335 if (len_self >= len_other) in dictview_richcompare()4446 Py_ssize_t len_self; in _PyDictView_Intersect() local4458 len_self = dictview_len((_PyDictViewObject *)self); in _PyDictView_Intersect()[all …]
346 len_self = len(self)347 if len_value > len_self:350 for i in range(0, len_self - len_value + 1):