Home
last modified time | relevance | path

Searched refs:kLookup (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Connectivity/staticlibs/netd/libnetdutils/
DSlice.cpp27 const std::array<char, 16> kLookup = { in toHex() local
29 return {kLookup[byte >> 4], kLookup[byte & 0xf]}; in toHex()
/packages/modules/StatsD/statsd/src/
Dstats_log_util.cpp650 static const char* kLookup = "0123456789ABCDEF"; in toHexString() local
653 hex.push_back(kLookup[(byte & 0xF0) >> 4]); in toHexString()
654 hex.push_back(kLookup[byte & 0x0F]); in toHexString()