Home
last modified time | relevance | path

Searched refs:argbuf (Results 1 - 5 of 5) sorted by relevance

/third_party/python/Python/
H A Dpystrhex.c7 static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen, in _Py_strhex_impl() argument
90 c = argbuf[i]; in _Py_strhex_impl()
106 c = argbuf[i++]; in _Py_strhex_impl()
113 c = argbuf[i++]; in _Py_strhex_impl()
124 c = argbuf[i--]; in _Py_strhex_impl()
131 c = argbuf[i--]; in _Py_strhex_impl()
148 PyObject * _Py_strhex(const char* argbuf, const Py_ssize_t arglen) in _Py_strhex() argument
150 return _Py_strhex_impl(argbuf, arglen, NULL, 0, 0); in _Py_strhex()
155 PyObject* _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen) in _Py_strhex_bytes() argument
157 return _Py_strhex_impl(argbuf, argle in _Py_strhex_bytes()
162 _Py_strhex_with_sep(const char* argbuf, const Py_ssize_t arglen, PyObject* sep, const int bytes_per_group) _Py_strhex_with_sep() argument
170 _Py_strhex_bytes_with_sep(const char* argbuf, const Py_ssize_t arglen, PyObject* sep, const int bytes_per_group) _Py_strhex_bytes_with_sep() argument
[all...]
/third_party/python/Include/internal/
H A Dpycore_strhex.h11 // Returns a str() containing the hex representation of argbuf.
13 char* argbuf,
16 // Returns a bytes() containing the ASCII hex representation of argbuf.
18 const char* argbuf,
23 const char* argbuf,
28 const char* argbuf,
/third_party/curl/packages/OS400/
H A Dcurlcl.c60 size_t *argsize, char *argbuf) in parse_command_line()
80 *argv++ = argbuf; in parse_command_line()
104 if(argbuf) in parse_command_line()
105 *argbuf++ = c; in parse_command_line()
116 if(argbuf) in parse_command_line()
117 *argbuf = '\0'; in parse_command_line()
58 parse_command_line(const char *cmdargs, size_t len, size_t *argc, char **argv, size_t *argsize, char *argbuf) parse_command_line() argument
/third_party/python/Modules/
H A Dbinascii.c882 const char* argbuf; in binascii_a2b_hex_impl() local
889 argbuf = hexstr->buf; in binascii_a2b_hex_impl()
913 unsigned int top = _PyLong_DigitValue[Py_CHARMASK(argbuf[i])]; in binascii_a2b_hex_impl()
914 unsigned int bot = _PyLong_DigitValue[Py_CHARMASK(argbuf[i+1])]; in binascii_a2b_hex_impl()
/third_party/python/Objects/
H A Dbytesobject.c2482 const char *argbuf = PyBytes_AS_STRING(self); in bytes_hex_impl() local
2484 return _Py_strhex_with_sep(argbuf, arglen, sep, bytes_per_sep); in bytes_hex_impl()

Completed in 7 milliseconds