Searched refs:other_bytes (Results 1 – 3 of 3) sorted by relevance
1013 Py_buffer self_bytes, other_bytes; in bytearray_richcompare() local1040 if (PyObject_GetBuffer(other, &other_bytes, PyBUF_SIMPLE) != 0) { in bytearray_richcompare()1045 other_size = other_bytes.len; in bytearray_richcompare()1050 PyBuffer_Release(&other_bytes); in bytearray_richcompare()1054 cmp = memcmp(self_bytes.buf, other_bytes.buf, in bytearray_richcompare()1059 PyBuffer_Release(&other_bytes); in bytearray_richcompare()
134 other_bytes int64
1043 Py_buffer self_bytes, other_bytes; in bytearray_richcompare() local1076 other_size = _getbuffer(other, &other_bytes); in bytearray_richcompare()1093 cmp = memcmp(self_bytes.buf, other_bytes.buf, minsize); in bytearray_richcompare()1115 PyBuffer_Release(&other_bytes); in bytearray_richcompare()