Searched refs:_Py_strhex_impl (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Python/ |
D | pystrhex.c | 7 static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen, in _Py_strhex_impl() function 148 return _Py_strhex_impl(argbuf, arglen, NULL, 0, 0); in _Py_strhex() 155 return _Py_strhex_impl(argbuf, arglen, NULL, 0, 1); in _Py_strhex_bytes() 163 return _Py_strhex_impl(argbuf, arglen, sep, bytes_per_group, 0); in _Py_strhex_with_sep() 171 return _Py_strhex_impl(argbuf, arglen, sep, bytes_per_group, 1); in _Py_strhex_bytes_with_sep()
|