Searched refs:hexdigits (Results 1 – 12 of 12) sorted by relevance
669 static Py_UNICODE hexdigits[] = { variable719 *outp++ = hexdigits[(c>>28)&0xf]; in PyCodec_BackslashReplaceErrors()720 *outp++ = hexdigits[(c>>24)&0xf]; in PyCodec_BackslashReplaceErrors()721 *outp++ = hexdigits[(c>>20)&0xf]; in PyCodec_BackslashReplaceErrors()722 *outp++ = hexdigits[(c>>16)&0xf]; in PyCodec_BackslashReplaceErrors()723 *outp++ = hexdigits[(c>>12)&0xf]; in PyCodec_BackslashReplaceErrors()724 *outp++ = hexdigits[(c>>8)&0xf]; in PyCodec_BackslashReplaceErrors()730 *outp++ = hexdigits[(c>>12)&0xf]; in PyCodec_BackslashReplaceErrors()731 *outp++ = hexdigits[(c>>8)&0xf]; in PyCodec_BackslashReplaceErrors()735 *outp++ = hexdigits[(c>>4)&0xf]; in PyCodec_BackslashReplaceErrors()[all …]
656 static Py_UNICODE hexdigits[] = { variable702 *outp++ = hexdigits[(c>>28)&0xf]; in PyCodec_BackslashReplaceErrors()703 *outp++ = hexdigits[(c>>24)&0xf]; in PyCodec_BackslashReplaceErrors()704 *outp++ = hexdigits[(c>>20)&0xf]; in PyCodec_BackslashReplaceErrors()705 *outp++ = hexdigits[(c>>16)&0xf]; in PyCodec_BackslashReplaceErrors()706 *outp++ = hexdigits[(c>>12)&0xf]; in PyCodec_BackslashReplaceErrors()707 *outp++ = hexdigits[(c>>8)&0xf]; in PyCodec_BackslashReplaceErrors()713 *outp++ = hexdigits[(c>>12)&0xf]; in PyCodec_BackslashReplaceErrors()714 *outp++ = hexdigits[(c>>8)&0xf]; in PyCodec_BackslashReplaceErrors()718 *outp++ = hexdigits[(c>>4)&0xf]; in PyCodec_BackslashReplaceErrors()[all …]
10 + string.hexdigits[(o >> 4) & 0xF]11 + string.hexdigits[o & 0xF])
48 from string import hexdigits299 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
12 h = string.hexdigits
75 string.hexdigits
28 h = string.hexdigits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
916 static const char *hexdigits = "0123456789abcdef"; in bytearray_repr() local979 *p++ = hexdigits[(c & 0xf0) >> 4]; in bytearray_repr()980 *p++ = hexdigits[c & 0xf]; in bytearray_repr()
922 static const char *hexdigits = "0123456789abcdef"; in bytearray_repr() local985 *p++ = hexdigits[(c & 0xf0) >> 4]; in bytearray_repr()986 *p++ = hexdigits[c & 0xf]; in bytearray_repr()