/third_party/python/Modules/clinic/ |
H A D | binascii.c.h | 292 "b2a_hex($module, /, data, sep=<unrepresentable>, bytes_per_sep=1)\n" 299 " bytes_per_sep\n" 319 int bytes_per_sep); 325 static const char * const _keywords[] = {"data", "sep", "bytes_per_sep", NULL}; in binascii_b2a_hex() 331 int bytes_per_sep = 1; in binascii_b2a_hex() local 353 bytes_per_sep = _PyLong_AsInt(args[2]); in binascii_b2a_hex() 354 if (bytes_per_sep == -1 && PyErr_Occurred()) { in binascii_b2a_hex() 358 return_value = binascii_b2a_hex_impl(module, &data, sep, bytes_per_sep); in binascii_b2a_hex() 370 "hexlify($module, /, data, sep=<unrepresentable>, bytes_per_sep=1)\n" 377 " bytes_per_sep\ 401 int bytes_per_sep = 1; binascii_hexlify() local [all...] |
/third_party/python/Objects/clinic/ |
H A D | memoryobject.c.h | 198 "hex($self, /, sep=<unrepresentable>, bytes_per_sep=1)\n" 205 " bytes_per_sep\n" 225 int bytes_per_sep); 231 static const char * const _keywords[] = {"sep", "bytes_per_sep", NULL}; in memoryview_hex() 236 int bytes_per_sep = 1; in memoryview_hex() local 251 bytes_per_sep = _PyLong_AsInt(args[1]); in memoryview_hex() 252 if (bytes_per_sep == -1 && PyErr_Occurred()) { in memoryview_hex() 256 return_value = memoryview_hex_impl(self, sep, bytes_per_sep); in memoryview_hex()
|
H A D | bytesobject.c.h | 768 "hex($self, /, sep=<unrepresentable>, bytes_per_sep=1)\n" 775 " bytes_per_sep\n" 794 bytes_hex_impl(PyBytesObject *self, PyObject *sep, int bytes_per_sep); 800 static const char * const _keywords[] = {"sep", "bytes_per_sep", NULL}; in bytes_hex() 805 int bytes_per_sep = 1; in bytes_hex() local 820 bytes_per_sep = _PyLong_AsInt(args[1]); in bytes_hex() 821 if (bytes_per_sep == -1 && PyErr_Occurred()) { in bytes_hex() 825 return_value = bytes_hex_impl(self, sep, bytes_per_sep); in bytes_hex()
|
H A D | bytearrayobject.c.h | 990 "hex($self, /, sep=<unrepresentable>, bytes_per_sep=1)\n" 997 " bytes_per_sep\n" 1016 bytearray_hex_impl(PyByteArrayObject *self, PyObject *sep, int bytes_per_sep); 1022 static const char * const _keywords[] = {"sep", "bytes_per_sep", NULL}; in bytearray_hex() 1027 int bytes_per_sep = 1; in bytearray_hex() local 1042 bytes_per_sep = _PyLong_AsInt(args[1]); in bytearray_hex() 1043 if (bytes_per_sep == -1 && PyErr_Occurred()) { in bytearray_hex() 1047 return_value = bytearray_hex_impl(self, sep, bytes_per_sep); in bytearray_hex()
|
/third_party/python/Modules/ |
H A D | binascii.c | 821 bytes_per_sep: int = 1 841 int bytes_per_sep) in binascii_b2a_hex_impl() 845 sep, bytes_per_sep); in binascii_b2a_hex_impl() 859 int bytes_per_sep) in binascii_hexlify_impl() 863 sep, bytes_per_sep); in binascii_hexlify_impl() 840 binascii_b2a_hex_impl(PyObject *module, Py_buffer *data, PyObject *sep, int bytes_per_sep) binascii_b2a_hex_impl() argument 858 binascii_hexlify_impl(PyObject *module, Py_buffer *data, PyObject *sep, int bytes_per_sep) binascii_hexlify_impl() argument
|
/third_party/python/Objects/ |
H A D | memoryobject.c | 2218 bytes_per_sep: int = 1 2238 int bytes_per_sep) in memoryview_hex_impl() 2248 return _Py_strhex_with_sep(src->buf, src->len, sep, bytes_per_sep); in memoryview_hex_impl() 2262 sep, bytes_per_sep); in memoryview_hex_impl() 2237 memoryview_hex_impl(PyMemoryViewObject *self, PyObject *sep, int bytes_per_sep) memoryview_hex_impl() argument
|
H A D | bytesobject.c | 2460 bytes_per_sep: int = 1 2479 bytes_hex_impl(PyBytesObject *self, PyObject *sep, int bytes_per_sep) in bytes_hex_impl() argument 2484 return _Py_strhex_with_sep(argbuf, arglen, sep, bytes_per_sep); in bytes_hex_impl()
|