Searched refs:hex_chars (Results 1 – 2 of 2) sorted by relevance
2995 static const char hex_chars[] = "0123456789ABCDEF"; in WriteUChar() local2997 w->AddCharacter(hex_chars[(u >> 12) & 0xf]); in WriteUChar()2998 w->AddCharacter(hex_chars[(u >> 8) & 0xf]); in WriteUChar()2999 w->AddCharacter(hex_chars[(u >> 4) & 0xf]); in WriteUChar()3000 w->AddCharacter(hex_chars[u & 0xf]); in WriteUChar()
4770 const char hex_chars[] = "0123456789ABCDEF"; in RUNTIME_FUNCTION() local4820 destination->Set(dest_position+2, hex_chars[chr >> 12]); in RUNTIME_FUNCTION()4821 destination->Set(dest_position+3, hex_chars[(chr >> 8) & 0xf]); in RUNTIME_FUNCTION()4822 destination->Set(dest_position+4, hex_chars[(chr >> 4) & 0xf]); in RUNTIME_FUNCTION()4823 destination->Set(dest_position+5, hex_chars[chr & 0xf]); in RUNTIME_FUNCTION()4830 destination->Set(dest_position+1, hex_chars[chr >> 4]); in RUNTIME_FUNCTION()4831 destination->Set(dest_position+2, hex_chars[chr & 0xf]); in RUNTIME_FUNCTION()