/third_party/boost/boost/property_tree/json_parser/detail/ |
D | write.hpp | 50 const char *hexdigits = "0123456789ABCDEF"; in create_escapes() local 59 result += Ch(hexdigits[d1]); result += Ch(hexdigits[d2]); in create_escapes() 60 result += Ch(hexdigits[d3]); result += Ch(hexdigits[d4]); in create_escapes()
|
/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/giflib/ |
D | gifbuild.c | 589 const static char *hexdigits = "0123456789ABCDEF"; in Icon2Gif() local 591 dp = strchr(hexdigits, toupper(c)); in Icon2Gif() 596 hi = (dp - hexdigits); in Icon2Gif() 601 dp = strchr(hexdigits, toupper(c)); in Icon2Gif() 606 lo = (dp - hexdigits); in Icon2Gif()
|
/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/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/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/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/ |
D | string.py | 29 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
|
/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/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/freetype/src/sfnt/ |
D | sfdriver.c | 775 static const char hexdigits[16] = variable 1031 *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/gettext/libtextstyle/gnulib-local/lib/ |
D | term-ostream.oo.c | 1152 static const char hexdigits[16] = in generate_hyperlink_id() local 1172 *p++ = hexdigits[(word >> (32 - 4 * (j + 1))) & 0x0f]; in generate_hyperlink_id()
|
/third_party/freetype/ |
D | ChangeLog.28 | 2065 (hexdigits): New array.
|
/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/sqlite/src/ |
D | sqlite3.c | 121650 static const char hexdigits[] = { 121691 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F]; 121692 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F]; 121811 *(z++) = hexdigits[(c>>4)&0xf]; 121812 *(z++) = hexdigits[c&0xf];
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 102393 @@ -121183,39 +123351,42 @@ static const char hexdigits[] = { 102458 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F]; 140034 @@ -121196,39 +123364,42 @@ static const char hexdigits[] = { 140099 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F]; 166167 @@ -1027,39 +1039,42 @@ static const char hexdigits[] = { 166232 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
|