Lines Matching refs:Py_buffer
103 bytes_partition_impl(PyBytesObject *self, Py_buffer *sep);
109 Py_buffer sep = {NULL, NULL}; in bytes_partition()
146 bytes_rpartition_impl(PyBytesObject *self, Py_buffer *sep);
152 Py_buffer sep = {NULL, NULL}; in bytes_rpartition()
415 bytes_maketrans_impl(Py_buffer *frm, Py_buffer *to);
421 Py_buffer frm = {NULL, NULL}; in bytes_maketrans()
422 Py_buffer to = {NULL, NULL}; in bytes_maketrans()
473 bytes_replace_impl(PyBytesObject *self, Py_buffer *old, Py_buffer *new,
480 Py_buffer old = {NULL, NULL}; in bytes_replace()
481 Py_buffer new = {NULL, NULL}; in bytes_replace()
545 bytes_removeprefix_impl(PyBytesObject *self, Py_buffer *prefix);
551 Py_buffer prefix = {NULL, NULL}; in bytes_removeprefix()
585 bytes_removesuffix_impl(PyBytesObject *self, Py_buffer *suffix);
591 Py_buffer suffix = {NULL, NULL}; in bytes_removesuffix()