Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_bytes_methods.h31 extern PyObject *_Py_bytes_rfind(const char *str, Py_ssize_t len, PyObject *args);
/third_party/python/Objects/
Dbytes_methods.c617 _Py_bytes_rfind(const char *str, Py_ssize_t len, PyObject *args) in _Py_bytes_rfind() function
Dbytearrayobject.c1149 return _Py_bytes_rfind(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args); in bytearray_rfind()
Dbytesobject.c1863 return _Py_bytes_rfind(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_rfind()