Lines Matching refs:PyByteArrayObject
43 bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags) in bytearray_getbuffer()
59 bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view) in bytearray_releasebuffer()
65 _canresize(PyByteArrayObject *self) in _canresize()
108 PyByteArrayObject *new; in PyByteArray_FromStringAndSize()
122 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); in PyByteArray_FromStringAndSize()
171 PyByteArrayObject *obj = ((PyByteArrayObject *)self); in PyByteArray_Resize()
250 PyByteArrayObject *result = NULL; in PyByteArray_Concat()
266 result = (PyByteArrayObject *) \ in PyByteArray_Concat()
286 bytearray_length(PyByteArrayObject *self) in bytearray_length()
292 bytearray_iconcat(PyByteArrayObject *self, PyObject *other) in bytearray_iconcat()
319 bytearray_repeat(PyByteArrayObject *self, Py_ssize_t count) in bytearray_repeat()
321 PyByteArrayObject *result; in bytearray_repeat()
332 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size); in bytearray_repeat()
347 bytearray_irepeat(PyByteArrayObject *self, Py_ssize_t count) in bytearray_irepeat()
376 bytearray_getitem(PyByteArrayObject *self, Py_ssize_t i) in bytearray_getitem()
386 bytearray_subscript(PyByteArrayObject *self, PyObject *index) in bytearray_subscript()
444 bytearray_setslice_linear(PyByteArrayObject *self, in bytearray_setslice_linear()
528 bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi, in bytearray_setslice()
578 bytearray_setitem(PyByteArrayObject *self, Py_ssize_t i, PyObject *value) in bytearray_setitem()
601 bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *values) in bytearray_ass_subscript()
752 bytearray___init___impl(PyByteArrayObject *self, PyObject *arg, in bytearray___init___impl()
906 bytearray_repr(PyByteArrayObject *self) in bytearray_repr()
1001 return bytearray_repr((PyByteArrayObject*)op); in bytearray_str()
1060 bytearray_dealloc(PyByteArrayObject *self) in bytearray_dealloc()
1100 bytearray_find(PyByteArrayObject *self, PyObject *args) in bytearray_find()
1106 bytearray_count(PyByteArrayObject *self, PyObject *args) in bytearray_count()
1118 bytearray_clear_impl(PyByteArrayObject *self) in bytearray_clear_impl()
1133 bytearray_copy_impl(PyByteArrayObject *self) in bytearray_copy_impl()
1141 bytearray_index(PyByteArrayObject *self, PyObject *args) in bytearray_index()
1147 bytearray_rfind(PyByteArrayObject *self, PyObject *args) in bytearray_rfind()
1153 bytearray_rindex(PyByteArrayObject *self, PyObject *args) in bytearray_rindex()
1165 bytearray_startswith(PyByteArrayObject *self, PyObject *args) in bytearray_startswith()
1171 bytearray_endswith(PyByteArrayObject *self, PyObject *args) in bytearray_endswith()
1190 bytearray_removeprefix_impl(PyByteArrayObject *self, Py_buffer *prefix) in bytearray_removeprefix_impl()
1222 bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix) in bytearray_removesuffix_impl()
1257 bytearray_translate_impl(PyByteArrayObject *self, PyObject *table, in bytearray_translate_impl()
1388 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old, in bytearray_replace_impl()
1412 bytearray_split_impl(PyByteArrayObject *self, PyObject *sep, in bytearray_split_impl()
1456 bytearray_partition(PyByteArrayObject *self, PyObject *sep) in bytearray_partition()
1494 bytearray_rpartition(PyByteArrayObject *self, PyObject *sep) in bytearray_rpartition()
1523 bytearray_rsplit_impl(PyByteArrayObject *self, PyObject *sep, in bytearray_rsplit_impl()
1557 bytearray_reverse_impl(PyByteArrayObject *self) in bytearray_reverse_impl()
1597 bytearray_insert_impl(PyByteArrayObject *self, Py_ssize_t index, int item) in bytearray_insert_impl()
1636 bytearray_append_impl(PyByteArrayObject *self, int item) in bytearray_append_impl()
1665 bytearray_extend(PyByteArrayObject *self, PyObject *iterable_of_ints) in bytearray_extend()
1774 bytearray_pop_impl(PyByteArrayObject *self, Py_ssize_t index) in bytearray_pop_impl()
1815 bytearray_remove_impl(PyByteArrayObject *self, int value) in bytearray_remove_impl()
1870 bytearray_strip_impl(PyByteArrayObject *self, PyObject *bytes) in bytearray_strip_impl()
1912 bytearray_lstrip_impl(PyByteArrayObject *self, PyObject *bytes) in bytearray_lstrip_impl()
1951 bytearray_rstrip_impl(PyByteArrayObject *self, PyObject *bytes) in bytearray_rstrip_impl()
1993 bytearray_decode_impl(PyByteArrayObject *self, const char *encoding, in bytearray_decode_impl()
2008 bytearray_alloc(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_alloc()
2027 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join()
2045 bytearray_splitlines_impl(PyByteArrayObject *self, int keepends) in bytearray_splitlines_impl()
2102 bytearray_hex_impl(PyByteArrayObject *self, PyObject *sep, int bytes_per_sep) in bytearray_hex_impl()
2111 _common_reduce(PyByteArrayObject *self, int proto) in _common_reduce()
2153 bytearray_reduce_impl(PyByteArrayObject *self) in bytearray_reduce_impl()
2169 bytearray_reduce_ex_impl(PyByteArrayObject *self, int proto) in bytearray_reduce_ex_impl()
2182 bytearray_sizeof_impl(PyByteArrayObject *self) in bytearray_sizeof_impl()
2323 sizeof(PyByteArrayObject),
2368 PyByteArrayObject *it_seq; /* Set to NULL when iterator is exhausted */
2389 PyByteArrayObject *seq; in bytearrayiter_next()
2514 it->it_seq = (PyByteArrayObject *)seq; in bytearray_iter()