/external/python/cpython2/Python/ |
D | codecs.c | 825 static Py_UNICODE hexdigits[] = { variable 875 *outp++ = hexdigits[(c>>28)&0xf]; in PyCodec_BackslashReplaceErrors() 876 *outp++ = hexdigits[(c>>24)&0xf]; in PyCodec_BackslashReplaceErrors() 877 *outp++ = hexdigits[(c>>20)&0xf]; in PyCodec_BackslashReplaceErrors() 878 *outp++ = hexdigits[(c>>16)&0xf]; in PyCodec_BackslashReplaceErrors() 879 *outp++ = hexdigits[(c>>12)&0xf]; in PyCodec_BackslashReplaceErrors() 880 *outp++ = hexdigits[(c>>8)&0xf]; in PyCodec_BackslashReplaceErrors() 886 *outp++ = hexdigits[(c>>12)&0xf]; in PyCodec_BackslashReplaceErrors() 887 *outp++ = hexdigits[(c>>8)&0xf]; in PyCodec_BackslashReplaceErrors() 891 *outp++ = hexdigits[(c>>4)&0xf]; in PyCodec_BackslashReplaceErrors() [all …]
|
/external/python/cpython3/Tools/gdb/ |
D | libpython.py | 98 hexdigits = "0123456789abcdef" variable 1105 out.write(hexdigits[(ord(byte) & 0xf0) >> 4]) 1106 out.write(hexdigits[ord(byte) & 0xf]) 1285 out.write(hexdigits[(ord(ch) >> 4) & 0x000F]) 1286 out.write(hexdigits[ord(ch) & 0x000F]) 1330 out.write(hexdigits[(code >> 4) & 0x000F]) 1331 out.write(hexdigits[code & 0x000F]) 1335 out.write(hexdigits[(code >> 28) & 0x0000000F]) 1336 out.write(hexdigits[(code >> 24) & 0x0000000F]) 1337 out.write(hexdigits[(code >> 20) & 0x0000000F]) [all …]
|
/external/python/cpython3/Lib/email/ |
D | quoprimime.py | 44 from string import ascii_letters, digits, hexdigits 262 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
|
/external/python/cpython2/Lib/email/ |
D | quoprimime.py | 48 from string import hexdigits 299 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
|
/external/python/cpython2/Demo/md5test/ |
D | md5driver.py | 10 + string.hexdigits[(o >> 4) & 0xF] 11 + string.hexdigits[o & 0xF])
|
/external/python/cpython2/Lib/test/ |
D | test_md5.py | 12 h = string.hexdigits
|
D | test_hashlib.py | 30 h = string.hexdigits
|
D | test_string.py | 72 string.hexdigits
|
D | test_curses.py | 402 check(curses.ascii.isxdigit, c in string.hexdigits)
|
/external/tensorflow/tensorflow/core/lib/strings/ |
D | strcat.cc | 38 static const char hexdigits[] = "0123456789abcdef"; in AlphaNum() local 40 *--writer = hexdigits[value & 0xF]; in AlphaNum()
|
D | numbers.cc | 404 static const char* hexdigits = "0123456789abcdef"; in Uint64ToHexString() local 408 buf[i] = hexdigits[v & 0xf]; in Uint64ToHexString()
|
/external/fonttools/Lib/fontTools/misc/ |
D | textTools.py | 32 h = string.hexdigits
|
D | xmlWriter.py | 190 h = string.hexdigits
|
/external/protobuf/src/google/protobuf/stubs/ |
D | strutil.cc | 894 static const char *hexdigits = "0123456789abcdef"; in FastHexToBuffer() local 898 *p-- = hexdigits[i & 15]; // mod by 16 in FastHexToBuffer() 905 static const char *hexdigits = "0123456789abcdef"; in InternalFastHexToBuffer() local 912 buffer[i] = hexdigits[value & 0xf]; in InternalFastHexToBuffer() 914 buffer[i] = hexdigits[uint32(value) & 0xf]; in InternalFastHexToBuffer() 1410 static const char hexdigits[] = "0123456789abcdef"; in AlphaNum() local 1412 *--writer = hexdigits[value & 0xF]; in AlphaNum()
|
/external/autotest/client/cros/enterprise/ |
D | network_config.py | 11 return ''.join(random.choice(string.hexdigits) for _ in xrange(16))
|
/external/libpng/contrib/libtests/ |
D | tarith.c | 282 static const char hexdigits[16] = "0123456789ABCDEF"; variable 348 co->number[c.cnumber++] = hexdigits[(ch >> 4) & 0xf]; in check_one_character() 349 co->number[c.cnumber++] = hexdigits[ch & 0xf]; in check_one_character()
|
/external/python/cpython3/Lib/test/ |
D | test_secrets.py | 111 self.assertTrue(all(c in string.hexdigits for c in s))
|
D | test_string.py | 18 self.assertEqual(string.hexdigits, string.digits + 'abcdefABCDEF')
|
/external/python/cpython2/Lib/ |
D | stringold.py | 31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
|
D | string.py | 31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
|
/external/autotest/client/common_lib/ |
D | magic.py | 41 val = val + string.hexdigits.index(l) * col
|
/external/python/cpython3/Lib/ |
D | string.py | 29 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
|
/external/freetype/src/sfnt/ |
D | sfdriver.c | 765 static const char hexdigits[16] = variable 1014 *p-- = hexdigits[v & 0xF]; in sfnt_get_var_ps_name()
|
/external/python/cpython3/Doc/library/ |
D | curses.ascii.rst | 167 string.hexdigits``.
|
/external/python/cpython2/Doc/library/ |
D | curses.ascii.rst | 168 string.hexdigits``.
|