/third_party/python/Tools/gdb/ |
D | libpython.py | 98 hexdigits = "0123456789abcdef" variable 1116 out.write(hexdigits[(ord(byte) & 0xf0) >> 4]) 1117 out.write(hexdigits[ord(byte) & 0xf]) 1296 out.write(hexdigits[(ord(ch) >> 4) & 0x000F]) 1297 out.write(hexdigits[ord(ch) & 0x000F]) 1341 out.write(hexdigits[(code >> 4) & 0x000F]) 1342 out.write(hexdigits[code & 0x000F]) 1346 out.write(hexdigits[(code >> 28) & 0x0000000F]) 1347 out.write(hexdigits[(code >> 24) & 0x0000000F]) 1348 out.write(hexdigits[(code >> 20) & 0x0000000F]) [all …]
|
/third_party/python/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:
|
D | _header_value_parser.py | 73 from string import hexdigits 1052 remstr[0] in hexdigits and 1053 remstr[1] in hexdigits and
|
/third_party/protobuf/src/google/protobuf/stubs/ |
D | strutil.cc | 892 static const char *hexdigits = "0123456789abcdef"; in FastHexToBuffer() local 896 *p-- = hexdigits[i & 15]; // mod by 16 in FastHexToBuffer() 903 static const char *hexdigits = "0123456789abcdef"; in InternalFastHexToBuffer() local 910 buffer[i] = hexdigits[value & 0xf]; in InternalFastHexToBuffer() 912 buffer[i] = hexdigits[uint32(value) & 0xf]; in InternalFastHexToBuffer() 1412 static const char hexdigits[] = "0123456789abcdef"; in AlphaNum() local 1414 *--writer = hexdigits[value & 0xF]; in AlphaNum()
|
/third_party/skia/third_party/externals/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()
|
/third_party/flutter/skia/third_party/externals/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()
|
/third_party/python/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')
|
D | test_curses.py | 1243 check(curses.ascii.isxdigit, c in string.hexdigits)
|
/third_party/python/Lib/ |
D | string.py | 29 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
|
/third_party/freetype/src/sfnt/ |
D | sfdriver.c | 775 static const char hexdigits[16] = variable 1032 *p-- = hexdigits[v & 0xF]; in sfnt_get_var_ps_name()
|
/third_party/flutter/skia/third_party/externals/freetype/src/sfnt/ |
D | sfdriver.c | 776 static const char hexdigits[16] = variable 1032 *p-- = hexdigits[v & 0xF]; in sfnt_get_var_ps_name()
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | sfdriver.c | 775 static const char hexdigits[16] = variable 1032 *p-- = hexdigits[v & 0xF]; in sfnt_get_var_ps_name()
|
/third_party/python/Doc/library/ |
D | curses.ascii.rst | 167 string.hexdigits``.
|
D | msilib.rst | 122 braces, and with all hexdigits in upper-case).
|
D | string.rst | 46 .. data:: hexdigits
|
/third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
D | ChangeLog.28 | 2065 (hexdigits): New array.
|
/third_party/flutter/skia/third_party/externals/freetype/ |
D | ChangeLog.28 | 2065 (hexdigits): New array.
|
/third_party/freetype/docs/oldlogs/ |
D | ChangeLog.28 | 2065 (hexdigits): New array.
|
/third_party/sqlite/src/ |
D | sqlite3.c | 125551 static const char hexdigits[] = { 125595 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F]; 125596 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F]; 125721 *(z++) = hexdigits[(c>>4)&0xf]; 125722 *(z++) = hexdigits[c&0xf];
|
/third_party/chromium/patch/ |
D | 0003-ohos-1115.patch | 108149 @@ -121183,39 +123416,42 @@ static const char hexdigits[] = { 108214 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F]; 146570 @@ -121196,39 +123429,42 @@ static const char hexdigits[] = { 146635 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F]; 173576 @@ -1027,39 +1039,42 @@ static const char hexdigits[] = { 173641 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
|