Lines Matching refs:Py_buffer
55 bytearray_removeprefix_impl(PyByteArrayObject *self, Py_buffer *prefix);
61 Py_buffer prefix = {NULL, NULL}; in bytearray_removeprefix()
95 bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix);
101 Py_buffer suffix = {NULL, NULL}; in bytearray_removesuffix()
182 bytearray_maketrans_impl(Py_buffer *frm, Py_buffer *to);
188 Py_buffer frm = {NULL, NULL}; in bytearray_maketrans()
189 Py_buffer to = {NULL, NULL}; in bytearray_maketrans()
240 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
241 Py_buffer *new, Py_ssize_t count);
247 Py_buffer old = {NULL, NULL}; in bytearray_replace()
248 Py_buffer new = {NULL, NULL}; in bytearray_replace()