Searched refs:hex_chars (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dprofile-generator.cc3648 static const char hex_chars[] = "0123456789ABCDEF"; local
3650 w->AddCharacter(hex_chars[(u >> 12) & 0xf]);
3651 w->AddCharacter(hex_chars[(u >> 8) & 0xf]);
3652 w->AddCharacter(hex_chars[(u >> 4) & 0xf]);
3653 w->AddCharacter(hex_chars[u & 0xf]);
H A Druntime.cc5395 const char hex_chars[] = "0123456789ABCDEF";
5445 destination->Set(dest_position+2, hex_chars[chr >> 12]);
5446 destination->Set(dest_position+3, hex_chars[(chr >> 8) & 0xf]);
5447 destination->Set(dest_position+4, hex_chars[(chr >> 4) & 0xf]);
5448 destination->Set(dest_position+5, hex_chars[chr & 0xf]);
5455 destination->Set(dest_position+1, hex_chars[chr >> 4]);
5456 destination->Set(dest_position+2, hex_chars[chr & 0xf]);

Completed in 221 milliseconds