Home
last modified time | relevance | path

Searched refs:hexdigits (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dcodecs.c669 static Py_UNICODE hexdigits[] = { variable
719 *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 …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcodecs.c656 static Py_UNICODE hexdigits[] = { variable
702 *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 …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/md5test/
Dmd5driver.py10 + string.hexdigits[(o >> 4) & 0xF]
11 + string.hexdigits[o & 0xF])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dquoprimime.py48 from string import hexdigits
299 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_md5.py12 h = string.hexdigits
Dtest_string.py75 string.hexdigits
Dtest_hashlib.py28 h = string.hexdigits
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dstringold.py31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
Dstring.py31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dstring.py31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dbytearrayobject.c916 static const char *hexdigits = "0123456789abcdef"; in bytearray_repr() local
979 *p++ = hexdigits[(c & 0xf0) >> 4]; in bytearray_repr()
980 *p++ = hexdigits[c & 0xf]; in bytearray_repr()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dbytearrayobject.c922 static const char *hexdigits = "0123456789abcdef"; in bytearray_repr() local
985 *p++ = hexdigits[(c & 0xf0) >> 4]; in bytearray_repr()
986 *p++ = hexdigits[c & 0xf]; in bytearray_repr()