Lines Matching refs:len_other
4290 Py_ssize_t len_self, len_other; in dictview_richcompare() local
4304 len_other = PyObject_Size(other); in dictview_richcompare()
4305 if (len_other < 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()
4470 Py_ssize_t len_other = dictview_len((_PyDictViewObject *)other); in _PyDictView_Intersect() local
4471 if (len_other > len_self) { in _PyDictView_Intersect()
4686 Py_ssize_t len_other = PyObject_Size(other); in dictviews_isdisjoint() local
4687 if (len_other == -1) in dictviews_isdisjoint()
4690 if ((len_other > len_self)) { in dictviews_isdisjoint()