Lines Matching refs:len_self
4159 Py_ssize_t len_self, len_other; in dictview_richcompare() local
4170 len_self = PyObject_Size(self); in dictview_richcompare()
4171 if (len_self < 0) in dictview_richcompare()
4182 if (len_self == len_other) in dictview_richcompare()
4189 if (len_self < len_other) in dictview_richcompare()
4194 if (len_self <= len_other) in dictview_richcompare()
4199 if (len_self > len_other) in dictview_richcompare()
4204 if (len_self >= len_other) in dictview_richcompare()
4315 Py_ssize_t len_self; in _PyDictView_Intersect() local
4327 len_self = dictview_len((_PyDictViewObject *)self); in _PyDictView_Intersect()
4331 if (Py_IS_TYPE(other, &PySet_Type) && len_self <= PyObject_Size(other)) { in _PyDictView_Intersect()
4340 if (len_other > len_self) { in _PyDictView_Intersect()
4464 Py_ssize_t len_self = dictview_len((_PyDictViewObject *)self); in dictviews_isdisjoint() local
4469 if ((len_other > len_self)) { in dictviews_isdisjoint()