Lines Matching refs:PyByteArrayObject

6 bytearray___init___impl(PyByteArrayObject *self, PyObject *arg,
68 return_value = bytearray___init___impl((PyByteArrayObject *)self, arg, encoding, errors); in bytearray___init__()
84 bytearray_clear_impl(PyByteArrayObject *self);
87 bytearray_clear(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_clear()
102 bytearray_copy_impl(PyByteArrayObject *self);
105 bytearray_copy(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_copy()
124 bytearray_removeprefix_impl(PyByteArrayObject *self, Py_buffer *prefix);
127 bytearray_removeprefix(PyByteArrayObject *self, PyObject *arg) in bytearray_removeprefix()
164 bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix);
167 bytearray_removesuffix(PyByteArrayObject *self, PyObject *arg) in bytearray_removesuffix()
206 bytearray_translate_impl(PyByteArrayObject *self, PyObject *table,
210 bytearray_translate(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwn… in bytearray_translate()
309 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
313 bytearray_replace(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_replace()
386 bytearray_split_impl(PyByteArrayObject *self, PyObject *sep,
390 bytearray_split(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in bytearray_split()
485 bytearray_rsplit_impl(PyByteArrayObject *self, PyObject *sep,
489 bytearray_rsplit(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwname… in bytearray_rsplit()
541 bytearray_reverse_impl(PyByteArrayObject *self);
544 bytearray_reverse(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_reverse()
564 bytearray_insert_impl(PyByteArrayObject *self, Py_ssize_t index, int item);
567 bytearray_insert(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_insert()
610 bytearray_append_impl(PyByteArrayObject *self, int item);
613 bytearray_append(PyByteArrayObject *self, PyObject *arg) in bytearray_append()
655 bytearray_pop_impl(PyByteArrayObject *self, Py_ssize_t index);
658 bytearray_pop(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_pop()
701 bytearray_remove_impl(PyByteArrayObject *self, int value);
704 bytearray_remove(PyByteArrayObject *self, PyObject *arg) in bytearray_remove()
730 bytearray_strip_impl(PyByteArrayObject *self, PyObject *bytes);
733 bytearray_strip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_strip()
764 bytearray_lstrip_impl(PyByteArrayObject *self, PyObject *bytes);
767 bytearray_lstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_lstrip()
798 bytearray_rstrip_impl(PyByteArrayObject *self, PyObject *bytes);
801 bytearray_rstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_rstrip()
839 bytearray_decode_impl(PyByteArrayObject *self, const char *encoding,
843 bytearray_decode(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwname… in bytearray_decode()
924 bytearray_splitlines_impl(PyByteArrayObject *self, int keepends);
927 bytearray_splitlines(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kw… in bytearray_splitlines()
1016 bytearray_hex_impl(PyByteArrayObject *self, PyObject *sep, int bytes_per_sep);
1019 bytearray_hex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in bytearray_hex()
1063 bytearray_reduce_impl(PyByteArrayObject *self);
1066 bytearray_reduce(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_reduce()
1081 bytearray_reduce_ex_impl(PyByteArrayObject *self, int proto);
1084 bytearray_reduce_ex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_reduce_ex()
1116 bytearray_sizeof_impl(PyByteArrayObject *self);
1119 bytearray_sizeof(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_sizeof()