Home
last modified time | relevance | path

Searched refs:hex_chars (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/cares/src/tools/
Dadig.c839 static const char hex_chars[] = "0123456789ABCDEF"; in convert_query() local
878 *c++ = hex_chars [lo]; in convert_query()
879 *c++ = hex_chars [hi]; in convert_query()
889 *c++ = hex_chars [lo]; in convert_query()
891 *c++ = hex_chars [hi]; in convert_query()
/third_party/node/deps/v8/src/profiler/
Dheap-snapshot-generator.cc3080 static const char hex_chars[] = "0123456789ABCDEF"; in WriteUChar() local
3082 w->AddCharacter(hex_chars[(u >> 12) & 0xF]); in WriteUChar()
3083 w->AddCharacter(hex_chars[(u >> 8) & 0xF]); in WriteUChar()
3084 w->AddCharacter(hex_chars[(u >> 4) & 0xF]); in WriteUChar()
3085 w->AddCharacter(hex_chars[u & 0xF]); in WriteUChar()
/third_party/python/Lib/test/
Dtest_urlparse.py1089 hex_chars = {'{:04X}'.format(ord(c)) for c in illegal_chars}
1092 if (hex_chars & set(unicodedata.decomposition(c).split()))