Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Ddb_common.cpp71 const std::string CAP_HEX_CHAR_MAP = "0123456789ABCDEF"; variable
104 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()