Searched refs:CAP_HEX_CHAR_MAP (Results 1 – 1 of 1) sorted by relevance
71 const std::string CAP_HEX_CHAR_MAP = "0123456789ABCDEF"; variable104 outString.push_back(CAP_HEX_CHAR_MAP[entry >> 4]); // high 4 bits to one hex. in VectorToHexString()105 outString.push_back(CAP_HEX_CHAR_MAP[entry & 0x0F]); // low 4 bits to one hex. in VectorToHexString()128 buff[byteHexNum * i] = CAP_HEX_CHAR_MAP[data[i] >> 4]; // high 4 bits to one hex. in PrintHexVector()129 buff[byteHexNum * i + 1] = CAP_HEX_CHAR_MAP[data[i] & 0x0F]; // low 4 bits to one hex. in PrintHexVector()