Searched refs:_Py_bytes_count (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Include/ |
D | bytes_methods.h | 29 extern PyObject *_Py_bytes_count(const char *str, Py_ssize_t len, PyObject *args);
|
/external/python/cpython3/Objects/ |
D | bytes_methods.c | 670 _Py_bytes_count(const char *str, Py_ssize_t len, PyObject *args) in _Py_bytes_count() function
|
D | bytearrayobject.c | 1119 return _Py_bytes_count(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args); in bytearray_count()
|
D | bytesobject.c | 2076 return _Py_bytes_count(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_count()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 2083 return _Py_bytes_count(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_count()
|