Home
last modified time | relevance | path

Searched refs:bytesep (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dbytearrayobject.c1469 PyObject *bytesep, *result; in bytearray_partition() local
1471 bytesep = _PyByteArray_FromBufferObject(sep); in bytearray_partition()
1472 if (! bytesep) in bytearray_partition()
1478 bytesep, in bytearray_partition()
1479 PyByteArray_AS_STRING(bytesep), PyByteArray_GET_SIZE(bytesep) in bytearray_partition()
1482 Py_DECREF(bytesep); in bytearray_partition()
1507 PyObject *bytesep, *result; in bytearray_rpartition() local
1509 bytesep = _PyByteArray_FromBufferObject(sep); in bytearray_rpartition()
1510 if (! bytesep) in bytearray_rpartition()
1516 bytesep, in bytearray_rpartition()
[all …]
/external/python/cpython2/Objects/
Dbytearrayobject.c2120 PyObject *bytesep, *result; in bytearray_partition() local
2122 bytesep = _PyByteArray_FromBufferObject(sep_obj); in bytearray_partition()
2123 if (! bytesep) in bytearray_partition()
2129 bytesep, in bytearray_partition()
2130 PyByteArray_AS_STRING(bytesep), PyByteArray_GET_SIZE(bytesep) in bytearray_partition()
2133 Py_DECREF(bytesep); in bytearray_partition()
2148 PyObject *bytesep, *result; in bytearray_rpartition() local
2150 bytesep = _PyByteArray_FromBufferObject(sep_obj); in bytearray_rpartition()
2151 if (! bytesep) in bytearray_rpartition()
2157 bytesep, in bytearray_rpartition()
[all …]