Lines Matching refs:Py_buffer
85 bytes_partition_impl(PyBytesObject *self, Py_buffer *sep);
91 Py_buffer sep = {NULL, NULL}; in bytes_partition()
128 bytes_rpartition_impl(PyBytesObject *self, Py_buffer *sep);
134 Py_buffer sep = {NULL, NULL}; in bytes_rpartition()
397 bytes_maketrans_impl(Py_buffer *frm, Py_buffer *to);
403 Py_buffer frm = {NULL, NULL}; in bytes_maketrans()
404 Py_buffer to = {NULL, NULL}; in bytes_maketrans()
455 bytes_replace_impl(PyBytesObject *self, Py_buffer *old, Py_buffer *new,
462 Py_buffer old = {NULL, NULL}; in bytes_replace()
463 Py_buffer new = {NULL, NULL}; in bytes_replace()
527 bytes_removeprefix_impl(PyBytesObject *self, Py_buffer *prefix);
533 Py_buffer prefix = {NULL, NULL}; in bytes_removeprefix()
567 bytes_removesuffix_impl(PyBytesObject *self, Py_buffer *suffix);
573 Py_buffer suffix = {NULL, NULL}; in bytes_removesuffix()