Home
last modified time | relevance | path

Searched refs:other_bytes (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Objects/
Dbytearrayobject.c1013 Py_buffer self_bytes, other_bytes; in bytearray_richcompare() local
1040 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()
/external/syzkaller/sys/fuchsia/
Dobjects.txt134 other_bytes int64
/external/python/cpython2/Objects/
Dbytearrayobject.c1043 Py_buffer self_bytes, other_bytes; in bytearray_richcompare() local
1076 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()