Searched refs:kLookup (Results 1 – 1 of 1) sorted by relevance
413 static const char* kLookup = "0123456789abcdef"; variable418 hex.push_back(kLookup[(str[i] & 0xF0) >> 4]); in StrToHex()419 hex.push_back(kLookup[str[i] & 0x0F]); in StrToHex()