Home
last modified time | relevance | path

Searched refs:hexKeys (Results 1 - 1 of 1) sorted by relevance

/foundation/communication/nfc/interfaces/inner_api/common/
H A Dnfc_sdk_common.cpp50 const std::string hexKeys = "0123456789ABCDEF"; in BytesVecToHexString() local
52 result.push_back(hexKeys[(src[i] & 0xF0) >> HALF_BYTE_BITS]); in BytesVecToHexString()
53 result.push_back(hexKeys[src[i] & 0x0F]); in BytesVecToHexString()
61 const std::string hexKeys = "0123456789ABCDEF"; in UnsignedCharToHexString() local
62 result.push_back(hexKeys[(src & 0xF0) >> HALF_BYTE_BITS]); in UnsignedCharToHexString()
63 result.push_back(hexKeys[src & 0x0F]); in UnsignedCharToHexString()

Completed in 2 milliseconds