Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dbytearrayobject.c1883 const char *bytesptr; in bytearray_strip_impl() local
1887 bytesptr = "\t\n\r\f\v "; in bytearray_strip_impl()
1893 bytesptr = (const char *) vbytes.buf; in bytearray_strip_impl()
1898 left = lstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_strip_impl()
1902 right = rstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_strip_impl()
1925 const char *bytesptr; in bytearray_lstrip_impl() local
1929 bytesptr = "\t\n\r\f\v "; in bytearray_lstrip_impl()
1935 bytesptr = (const char *) vbytes.buf; in bytearray_lstrip_impl()
1940 left = lstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_lstrip_impl()
1964 const char *bytesptr; in bytearray_rstrip_impl() local
[all …]