• Home
  • Raw
  • Download

Lines Matching refs:hexdigit

1318     static const char *hexdigit = "0123456789abcdef";  in modified_EncodeRawUnicodeEscape()  local
1342 *p++ = hexdigit[(ch >> 28) & 0xf]; in modified_EncodeRawUnicodeEscape()
1343 *p++ = hexdigit[(ch >> 24) & 0xf]; in modified_EncodeRawUnicodeEscape()
1344 *p++ = hexdigit[(ch >> 20) & 0xf]; in modified_EncodeRawUnicodeEscape()
1345 *p++ = hexdigit[(ch >> 16) & 0xf]; in modified_EncodeRawUnicodeEscape()
1346 *p++ = hexdigit[(ch >> 12) & 0xf]; in modified_EncodeRawUnicodeEscape()
1347 *p++ = hexdigit[(ch >> 8) & 0xf]; in modified_EncodeRawUnicodeEscape()
1348 *p++ = hexdigit[(ch >> 4) & 0xf]; in modified_EncodeRawUnicodeEscape()
1349 *p++ = hexdigit[ch & 15]; in modified_EncodeRawUnicodeEscape()
1364 *p++ = hexdigit[(ucs >> 28) & 0xf]; in modified_EncodeRawUnicodeEscape()
1365 *p++ = hexdigit[(ucs >> 24) & 0xf]; in modified_EncodeRawUnicodeEscape()
1366 *p++ = hexdigit[(ucs >> 20) & 0xf]; in modified_EncodeRawUnicodeEscape()
1367 *p++ = hexdigit[(ucs >> 16) & 0xf]; in modified_EncodeRawUnicodeEscape()
1368 *p++ = hexdigit[(ucs >> 12) & 0xf]; in modified_EncodeRawUnicodeEscape()
1369 *p++ = hexdigit[(ucs >> 8) & 0xf]; in modified_EncodeRawUnicodeEscape()
1370 *p++ = hexdigit[(ucs >> 4) & 0xf]; in modified_EncodeRawUnicodeEscape()
1371 *p++ = hexdigit[ucs & 0xf]; in modified_EncodeRawUnicodeEscape()
1383 *p++ = hexdigit[(ch >> 12) & 0xf]; in modified_EncodeRawUnicodeEscape()
1384 *p++ = hexdigit[(ch >> 8) & 0xf]; in modified_EncodeRawUnicodeEscape()
1385 *p++ = hexdigit[(ch >> 4) & 0xf]; in modified_EncodeRawUnicodeEscape()
1386 *p++ = hexdigit[ch & 15]; in modified_EncodeRawUnicodeEscape()