• Home
  • Raw
  • Download

Lines Matching refs:hexdigit

1331     static const char *hexdigit = "0123456789abcdef";  in modified_EncodeRawUnicodeEscape()  local
1355 *p++ = hexdigit[(ch >> 28) & 0xf]; in modified_EncodeRawUnicodeEscape()
1356 *p++ = hexdigit[(ch >> 24) & 0xf]; in modified_EncodeRawUnicodeEscape()
1357 *p++ = hexdigit[(ch >> 20) & 0xf]; in modified_EncodeRawUnicodeEscape()
1358 *p++ = hexdigit[(ch >> 16) & 0xf]; in modified_EncodeRawUnicodeEscape()
1359 *p++ = hexdigit[(ch >> 12) & 0xf]; in modified_EncodeRawUnicodeEscape()
1360 *p++ = hexdigit[(ch >> 8) & 0xf]; in modified_EncodeRawUnicodeEscape()
1361 *p++ = hexdigit[(ch >> 4) & 0xf]; in modified_EncodeRawUnicodeEscape()
1362 *p++ = hexdigit[ch & 15]; in modified_EncodeRawUnicodeEscape()
1377 *p++ = hexdigit[(ucs >> 28) & 0xf]; in modified_EncodeRawUnicodeEscape()
1378 *p++ = hexdigit[(ucs >> 24) & 0xf]; in modified_EncodeRawUnicodeEscape()
1379 *p++ = hexdigit[(ucs >> 20) & 0xf]; in modified_EncodeRawUnicodeEscape()
1380 *p++ = hexdigit[(ucs >> 16) & 0xf]; in modified_EncodeRawUnicodeEscape()
1381 *p++ = hexdigit[(ucs >> 12) & 0xf]; in modified_EncodeRawUnicodeEscape()
1382 *p++ = hexdigit[(ucs >> 8) & 0xf]; in modified_EncodeRawUnicodeEscape()
1383 *p++ = hexdigit[(ucs >> 4) & 0xf]; in modified_EncodeRawUnicodeEscape()
1384 *p++ = hexdigit[ucs & 0xf]; in modified_EncodeRawUnicodeEscape()
1396 *p++ = hexdigit[(ch >> 12) & 0xf]; in modified_EncodeRawUnicodeEscape()
1397 *p++ = hexdigit[(ch >> 8) & 0xf]; in modified_EncodeRawUnicodeEscape()
1398 *p++ = hexdigit[(ch >> 4) & 0xf]; in modified_EncodeRawUnicodeEscape()
1399 *p++ = hexdigit[ch & 15]; in modified_EncodeRawUnicodeEscape()