Searched refs:HEX_CHAR_MAP (Results 1 – 1 of 1) sorted by relevance
70 const std::string HEX_CHAR_MAP = "0123456789abcdef"; variable167 tmp.push_back(HEX_CHAR_MAP[currentByte >> 4]); // high 4 bits to one hex. in TransferStringToHex()168 tmp.push_back(HEX_CHAR_MAP[currentByte & 0x0F]); // low 4 bits to one hex. in TransferStringToHex()