Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dbytes_methods.h31 extern PyObject *_Py_bytes_endswith(const char *str, Py_ssize_t len, PyObject *args);
/external/python/cpython3/Objects/
Dbytes_methods.c780 _Py_bytes_endswith(const char *str, Py_ssize_t len, PyObject *args) in _Py_bytes_endswith() function
Dbytearrayobject.c1173 return _Py_bytes_endswith(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args); in bytearray_endswith()
Dbytesobject.c2265 return _Py_bytes_endswith(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_endswith()