Lines Matching refs:argbuf
7 static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen,
90 c = argbuf[i];
106 c = argbuf[i++];
113 c = argbuf[i++];
124 c = argbuf[i--];
131 c = argbuf[i--];
148 PyObject * _Py_strhex(const char* argbuf, const Py_ssize_t arglen)
150 return _Py_strhex_impl(argbuf, arglen, NULL, 0, 0);
155 PyObject* _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen)
157 return _Py_strhex_impl(argbuf, arglen, NULL, 0, 1);
162 PyObject* _Py_strhex_with_sep(const char* argbuf, const Py_ssize_t arglen,
165 return _Py_strhex_impl(argbuf, arglen, sep, bytes_per_group, 0);
170 PyObject* _Py_strhex_bytes_with_sep(const char* argbuf, const Py_ssize_t arglen,
173 return _Py_strhex_impl(argbuf, arglen, sep, bytes_per_group, 1);