Lines Matching refs:bytesptr
1875 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
1960 bytesptr = "\t\n\r\f\v "; in bytearray_rstrip_impl()
1966 bytesptr = (const char *) vbytes.buf; in bytearray_rstrip_impl()
1971 right = rstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_rstrip_impl()