Home
last modified time | relevance | path

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

/system/netd/libnetdutils/
DSlice.cpp27 const std::array<char, 16> kLookup = { in toHex() local
29 return {kLookup[byte >> 4], kLookup[byte & 0xf]}; in toHex()
/system/vold/
DUtils.cpp848 static const char* kLookup = "0123456789abcdef"; variable
853 hex.push_back(kLookup[(str[i] & 0xF0) >> 4]); in StrToHex()
854 hex.push_back(kLookup[str[i] & 0x0F]); in StrToHex()
862 hex.push_back(kLookup[(str.data()[i] & 0xF0) >> 4]); in StrToHex()
863 hex.push_back(kLookup[str.data()[i] & 0x0F]); in StrToHex()