Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dbytes_methods.h24 extern PyObject *_Py_bytes_find(const char *str, Py_ssize_t len, PyObject *args);
/external/python/cpython3/Objects/
Dbytes_methods.c534 _Py_bytes_find(const char *str, Py_ssize_t len, PyObject *args) in _Py_bytes_find() function
Dbytearrayobject.c1102 return _Py_bytes_find(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args); in bytearray_find()
Dbytesobject.c1906 return _Py_bytes_find(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_find()