Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dbytearrayobject.c533 Py_buffer vbytes; in bytearray_setslice() local
536 vbytes.len = -1; in bytearray_setslice()
554 if (PyObject_GetBuffer(values, &vbytes, PyBUF_SIMPLE) != 0) { in bytearray_setslice()
560 needed = vbytes.len; in bytearray_setslice()
561 bytes = vbytes.buf; in bytearray_setslice()
572 if (vbytes.len != -1) in bytearray_setslice()
573 PyBuffer_Release(&vbytes); in bytearray_setslice()
1876 Py_buffer vbytes; in bytearray_strip_impl() local
1883 if (PyObject_GetBuffer(bytes, &vbytes, PyBUF_SIMPLE) != 0) in bytearray_strip_impl()
1885 bytesptr = (const char *) vbytes.buf; in bytearray_strip_impl()
[all …]