Searched refs:len_self (Results 1 – 4 of 4) sorted by relevance
270 Py_ssize_t len_self, len_other, min_len; in buffer_compare() local273 if (!get_buf(self, &p1, &len_self, ANY_BUFFER)) in buffer_compare()277 min_len = (len_self < len_other) ? len_self : len_other; in buffer_compare()283 return (len_self < len_other) ? -1 : (len_self > len_other) ? 1 : 0; in buffer_compare()
2881 Py_ssize_t len_self, len_other; in dictview_richcompare() local2894 len_self = PyObject_Size(self); in dictview_richcompare()2895 if (len_self < 0) in dictview_richcompare()2906 if (len_self == len_other) in dictview_richcompare()2913 if (len_self < len_other) in dictview_richcompare()2918 if (len_self <= len_other) in dictview_richcompare()2923 if (len_self > len_other) in dictview_richcompare()2928 if (len_self >= len_other) in dictview_richcompare()
417 len_self = len(self)418 if len_value > len_self:421 for i in range(0, len_self - len_value + 1):
313 len_self = len(self)314 if len_value > len_self:317 for i in range(0, len_self - len_value + 1):