• Home
  • Raw
  • Download

Lines Matching refs:PyByteArrayObject

63 bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags)  in bytearray_getbuffer()
79 bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view) in bytearray_releasebuffer()
85 _canresize(PyByteArrayObject *self) in _canresize()
129 PyByteArrayObject *new; in PyByteArray_FromStringAndSize()
143 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); in PyByteArray_FromStringAndSize()
192 PyByteArrayObject *obj = ((PyByteArrayObject *)self); in PyByteArray_Resize()
271 PyByteArrayObject *result = NULL; in PyByteArray_Concat()
287 result = (PyByteArrayObject *) \ in PyByteArray_Concat()
305 bytearray_length(PyByteArrayObject *self) in bytearray_length()
311 bytearray_iconcat(PyByteArrayObject *self, PyObject *other) in bytearray_iconcat()
338 bytearray_repeat(PyByteArrayObject *self, Py_ssize_t count) in bytearray_repeat()
340 PyByteArrayObject *result; in bytearray_repeat()
350 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size); in bytearray_repeat()
364 bytearray_irepeat(PyByteArrayObject *self, Py_ssize_t count) in bytearray_irepeat()
393 bytearray_getitem(PyByteArrayObject *self, Py_ssize_t i) in bytearray_getitem()
405 bytearray_subscript(PyByteArrayObject *self, PyObject *index) in bytearray_subscript()
462 bytearray_setslice_linear(PyByteArrayObject *self, in bytearray_setslice_linear()
546 bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi, in bytearray_setslice()
596 bytearray_setitem(PyByteArrayObject *self, Py_ssize_t i, PyObject *value) in bytearray_setitem()
619 bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *values) in bytearray_ass_subscript()
761 bytearray_init(PyByteArrayObject *self, PyObject *args, PyObject *kwds) in bytearray_init()
912 bytearray_repr(PyByteArrayObject *self) in bytearray_repr()
1006 return bytearray_repr((PyByteArrayObject*)op); in bytearray_str()
1071 bytearray_dealloc(PyByteArrayObject *self) in bytearray_dealloc()
1111 bytearray_find(PyByteArrayObject *self, PyObject *args) in bytearray_find()
1117 bytearray_count(PyByteArrayObject *self, PyObject *args) in bytearray_count()
1129 bytearray_clear_impl(PyByteArrayObject *self) in bytearray_clear_impl()
1144 bytearray_copy_impl(PyByteArrayObject *self) in bytearray_copy_impl()
1152 bytearray_index(PyByteArrayObject *self, PyObject *args) in bytearray_index()
1158 bytearray_rfind(PyByteArrayObject *self, PyObject *args) in bytearray_rfind()
1164 bytearray_rindex(PyByteArrayObject *self, PyObject *args) in bytearray_rindex()
1176 bytearray_startswith(PyByteArrayObject *self, PyObject *args) in bytearray_startswith()
1182 bytearray_endswith(PyByteArrayObject *self, PyObject *args) in bytearray_endswith()
1203 bytearray_translate_impl(PyByteArrayObject *self, PyObject *table, in bytearray_translate_impl()
1334 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old, in bytearray_replace_impl()
1358 bytearray_split_impl(PyByteArrayObject *self, PyObject *sep, in bytearray_split_impl()
1402 bytearray_partition(PyByteArrayObject *self, PyObject *sep) in bytearray_partition()
1440 bytearray_rpartition(PyByteArrayObject *self, PyObject *sep) in bytearray_rpartition()
1469 bytearray_rsplit_impl(PyByteArrayObject *self, PyObject *sep, in bytearray_rsplit_impl()
1503 bytearray_reverse_impl(PyByteArrayObject *self) in bytearray_reverse_impl()
1543 bytearray_insert_impl(PyByteArrayObject *self, Py_ssize_t index, int item) in bytearray_insert_impl()
1582 bytearray_append_impl(PyByteArrayObject *self, int item) in bytearray_append_impl()
1611 bytearray_extend(PyByteArrayObject *self, PyObject *iterable_of_ints) in bytearray_extend()
1708 bytearray_pop_impl(PyByteArrayObject *self, Py_ssize_t index) in bytearray_pop_impl()
1749 bytearray_remove_impl(PyByteArrayObject *self, int value) in bytearray_remove_impl()
1804 bytearray_strip_impl(PyByteArrayObject *self, PyObject *bytes) in bytearray_strip_impl()
1846 bytearray_lstrip_impl(PyByteArrayObject *self, PyObject *bytes) in bytearray_lstrip_impl()
1885 bytearray_rstrip_impl(PyByteArrayObject *self, PyObject *bytes) in bytearray_rstrip_impl()
1927 bytearray_decode_impl(PyByteArrayObject *self, const char *encoding, in bytearray_decode_impl()
1942 bytearray_alloc(PyByteArrayObject *self) in bytearray_alloc()
1961 bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes) in bytearray_join()
1979 bytearray_splitlines_impl(PyByteArrayObject *self, int keepends) in bytearray_splitlines_impl()
2028 _common_reduce(PyByteArrayObject *self, int proto) in _common_reduce()
2069 bytearray_reduce_impl(PyByteArrayObject *self) in bytearray_reduce_impl()
2085 bytearray_reduce_ex_impl(PyByteArrayObject *self, int proto) in bytearray_reduce_ex_impl()
2098 bytearray_sizeof_impl(PyByteArrayObject *self) in bytearray_sizeof_impl()
2238 sizeof(PyByteArrayObject),
2282 PyByteArrayObject *it_seq; /* Set to NULL when iterator is exhausted */
2303 PyByteArrayObject *seq; in bytearrayiter_next()
2427 it->it_seq = (PyByteArrayObject *)seq; in bytearray_iter()