Searched defs:Py_hexdigits (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython3/Python/
H A Dcodecs.c15 const char *Py_hexdigits = "0123456789abcdef"; variable
891 outp[2] = Py_hexdigits[(c>>4)&0xf];
892 outp[3] = Py_hexdigits[c&0xf];
945 *outp++ = Py_hexdigits[(c>>28)&0xf];
946 *outp++ = Py_hexdigits[(c>>24)&0xf];
947 *outp++ = Py_hexdigits[(c>>20)&0xf];
948 *outp++ = Py_hexdigits[(c>>16)&0xf];
949 *outp++ = Py_hexdigits[(c>>12)&0xf];
950 *outp++ = Py_hexdigits[(c>>8)&0xf];
954 *outp++ = Py_hexdigits[(
[all...]

Completed in 222 milliseconds