Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dbytearrayobject.c1875 const char *bytesptr; in bytearray_strip_impl() local
1879 bytesptr = "\t\n\r\f\v "; in bytearray_strip_impl()
1885 bytesptr = (const char *) vbytes.buf; in bytearray_strip_impl()
1890 left = lstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_strip_impl()
1894 right = rstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_strip_impl()
1917 const char *bytesptr; in bytearray_lstrip_impl() local
1921 bytesptr = "\t\n\r\f\v "; in bytearray_lstrip_impl()
1927 bytesptr = (const char *) vbytes.buf; in bytearray_lstrip_impl()
1932 left = lstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_lstrip_impl()
1956 const char *bytesptr; in bytearray_rstrip_impl() local
[all …]