Searched refs:bytearray_setslice (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
H A Dbytearrayobject.c525 bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi, function
540 err = bytearray_setslice(self, lo, hi, values);
587 return bytearray_setslice(self, i, i+1, NULL);
1607 /* bytearray_setslice code only accepts something supporting PEP 3118. */
1609 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), iterable_of_ints) == -1)
1673 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), bytearray_obj) == -1) {
/external/python/cpython2/Objects/
H A Dbytearrayobject.c474 bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi, function
489 err = bytearray_setslice(self, lo, hi, values);
577 return bytearray_setslice(self, i, i+1, NULL);
2288 /* bytearray_setslice code only accepts something supporting PEP 3118. */
2290 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), arg) == -1)
2354 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), bytearray_obj) == -1) {

Completed in 132 milliseconds