Searched refs:_Py_bytes_startswith (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_bytes_methods.h | 35 extern PyObject *_Py_bytes_startswith(const char *str, Py_ssize_t len, PyObject *args);
|
/external/python/cpython3/Objects/ |
D | bytes_methods.c | 817 _Py_bytes_startswith(const char *str, Py_ssize_t len, PyObject *args) in _Py_bytes_startswith() function
|
D | bytearrayobject.c | 1177 return _Py_bytes_startswith(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args); in bytearray_startswith()
|
D | bytesobject.c | 2264 return _Py_bytes_startswith(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_startswith()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 2274 return _Py_bytes_startswith(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_startswith()
|