Lines Matching refs:retbuf
66 Py_UCS1 *retbuf; in _Py_strhex_impl() local
73 retbuf = (Py_UCS1 *)PyBytes_AS_STRING(retval); in _Py_strhex_impl()
80 retbuf = PyUnicode_1BYTE_DATA(retval); in _Py_strhex_impl()
91 retbuf[j++] = Py_hexdigits[c >> 4]; in _Py_strhex_impl()
92 retbuf[j++] = Py_hexdigits[c & 0x0f]; in _Py_strhex_impl()
107 retbuf[j++] = Py_hexdigits[c >> 4]; in _Py_strhex_impl()
108 retbuf[j++] = Py_hexdigits[c & 0x0f]; in _Py_strhex_impl()
110 retbuf[j++] = sep_char; in _Py_strhex_impl()
114 retbuf[j++] = Py_hexdigits[c >> 4]; in _Py_strhex_impl()
115 retbuf[j++] = Py_hexdigits[c & 0x0f]; in _Py_strhex_impl()
125 retbuf[j--] = Py_hexdigits[c & 0x0f]; in _Py_strhex_impl()
126 retbuf[j--] = Py_hexdigits[c >> 4]; in _Py_strhex_impl()
128 retbuf[j--] = sep_char; in _Py_strhex_impl()
132 retbuf[j--] = Py_hexdigits[c & 0x0f]; in _Py_strhex_impl()
133 retbuf[j--] = Py_hexdigits[c >> 4]; in _Py_strhex_impl()