Lines Matching refs:Py_buffer
124 bytearray_removeprefix_impl(PyByteArrayObject *self, Py_buffer *prefix);
130 Py_buffer prefix = {NULL, NULL}; in bytearray_removeprefix()
164 bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix);
170 Py_buffer suffix = {NULL, NULL}; in bytearray_removesuffix()
251 bytearray_maketrans_impl(Py_buffer *frm, Py_buffer *to);
257 Py_buffer frm = {NULL, NULL}; in bytearray_maketrans()
258 Py_buffer to = {NULL, NULL}; in bytearray_maketrans()
309 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
310 Py_buffer *new, Py_ssize_t count);
316 Py_buffer old = {NULL, NULL}; in bytearray_replace()
317 Py_buffer new = {NULL, NULL}; in bytearray_replace()