MCPcopy Create free account
hub / github.com/apache/impala / my_i64tohex

Function my_i64tohex

be/src/util/debug-util.cc:77–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77static void my_i64tohex(int64_t w, char out[16]) {
78 static const char* digits = "0123456789abcdef";
79 for (size_t i = 0, j=60; i < 16; ++i, j -= 4) {
80 out[i] = digits[(w>>j) & 0x0f];
81 }
82}
83
84void PrintIdCompromised(const TUniqueId& id, char out[TUniqueIdBufferSize],
85 const char separator) {

Callers 1

PrintIdCompromisedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected