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