Searched refs:len_self (Results 1 – 4 of 4) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | bufferobject.c | 270 Py_ssize_t len_self, len_other, min_len; in buffer_compare() local 273 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()
|
D | dictobject.c | 2851 Py_ssize_t len_self, len_other; in dictview_richcompare() local 2864 len_self = PyObject_Size(self); in dictview_richcompare() 2865 if (len_self < 0) in dictview_richcompare() 2876 if (len_self == len_other) in dictview_richcompare() 2883 if (len_self < len_other) in dictview_richcompare() 2888 if (len_self <= len_other) in dictview_richcompare() 2893 if (len_self > len_other) in dictview_richcompare() 2898 if (len_self >= len_other) in dictview_richcompare()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | bufferobject.c | 270 Py_ssize_t len_self, len_other, min_len; in buffer_compare() local 273 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()
|
D | dictobject.c | 2817 Py_ssize_t len_self, len_other; in dictview_richcompare() local 2830 len_self = PyObject_Size(self); in dictview_richcompare() 2831 if (len_self < 0) in dictview_richcompare() 2842 if (len_self == len_other) in dictview_richcompare() 2849 if (len_self < len_other) in dictview_richcompare() 2854 if (len_self <= len_other) in dictview_richcompare() 2859 if (len_self > len_other) in dictview_richcompare() 2864 if (len_self >= len_other) in dictview_richcompare()
|