Lines Matching refs:PyByteArrayObject
15 bytearray_clear_impl(PyByteArrayObject *self);
18 bytearray_clear(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_clear()
33 bytearray_copy_impl(PyByteArrayObject *self);
36 bytearray_copy(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_copy()
55 bytearray_removeprefix_impl(PyByteArrayObject *self, Py_buffer *prefix);
58 bytearray_removeprefix(PyByteArrayObject *self, PyObject *arg) in bytearray_removeprefix()
95 bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix);
98 bytearray_removesuffix(PyByteArrayObject *self, PyObject *arg) in bytearray_removesuffix()
137 bytearray_translate_impl(PyByteArrayObject *self, PyObject *table,
141 bytearray_translate(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwn… in bytearray_translate()
240 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
244 bytearray_replace(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_replace()
322 bytearray_split_impl(PyByteArrayObject *self, PyObject *sep,
326 bytearray_split(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in bytearray_split()
426 bytearray_rsplit_impl(PyByteArrayObject *self, PyObject *sep,
430 bytearray_rsplit(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwname… in bytearray_rsplit()
487 bytearray_reverse_impl(PyByteArrayObject *self);
490 bytearray_reverse(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_reverse()
510 bytearray_insert_impl(PyByteArrayObject *self, Py_ssize_t index, int item);
513 bytearray_insert(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_insert()
561 bytearray_append_impl(PyByteArrayObject *self, int item);
564 bytearray_append(PyByteArrayObject *self, PyObject *arg) in bytearray_append()
606 bytearray_pop_impl(PyByteArrayObject *self, Py_ssize_t index);
609 bytearray_pop(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_pop()
657 bytearray_remove_impl(PyByteArrayObject *self, int value);
660 bytearray_remove(PyByteArrayObject *self, PyObject *arg) in bytearray_remove()
686 bytearray_strip_impl(PyByteArrayObject *self, PyObject *bytes);
689 bytearray_strip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_strip()
720 bytearray_lstrip_impl(PyByteArrayObject *self, PyObject *bytes);
723 bytearray_lstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_lstrip()
754 bytearray_rstrip_impl(PyByteArrayObject *self, PyObject *bytes);
757 bytearray_rstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_rstrip()
795 bytearray_decode_impl(PyByteArrayObject *self, const char *encoding,
799 bytearray_decode(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwname… in bytearray_decode()
880 bytearray_splitlines_impl(PyByteArrayObject *self, int keepends);
883 bytearray_splitlines(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kw… in bytearray_splitlines()
977 bytearray_hex_impl(PyByteArrayObject *self, PyObject *sep, int bytes_per_sep);
980 bytearray_hex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in bytearray_hex()
1029 bytearray_reduce_impl(PyByteArrayObject *self);
1032 bytearray_reduce(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_reduce()
1047 bytearray_reduce_ex_impl(PyByteArrayObject *self, int proto);
1050 bytearray_reduce_ex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_reduce_ex()
1087 bytearray_sizeof_impl(PyByteArrayObject *self);
1090 bytearray_sizeof(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_sizeof()