Lines Matching refs:sep
8 const PyObject* sep, int bytes_per_sep_group, in _Py_strhex_impl() argument
14 if (sep) { in _Py_strhex_impl()
15 Py_ssize_t seplen = PyObject_Length((PyObject*)sep); in _Py_strhex_impl()
23 if (PyUnicode_Check(sep)) { in _Py_strhex_impl()
24 if (PyUnicode_READY(sep)) in _Py_strhex_impl()
26 if (PyUnicode_KIND(sep) != PyUnicode_1BYTE_KIND) { in _Py_strhex_impl()
30 sep_char = PyUnicode_READ_CHAR(sep, 0); in _Py_strhex_impl()
32 else if (PyBytes_Check(sep)) { in _Py_strhex_impl()
33 sep_char = PyBytes_AS_STRING(sep)[0]; in _Py_strhex_impl()
162 PyObject * _Py_strhex_with_sep(const char* argbuf, const Py_ssize_t arglen, const PyObject* sep, co… in _Py_strhex_with_sep() argument
164 return _Py_strhex_impl(argbuf, arglen, sep, bytes_per_group, 0); in _Py_strhex_with_sep()
169 …ytes_with_sep(const char* argbuf, const Py_ssize_t arglen, const PyObject* sep, const int bytes_pe… in _Py_strhex_bytes_with_sep() argument
171 return _Py_strhex_impl(argbuf, arglen, sep, bytes_per_group, 1); in _Py_strhex_bytes_with_sep()