Home
last modified time | relevance | path

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

/openbmc/openpower-vpd-parser/vpd-manager/include/utility/
H A Dvpd_specific_utility.hpp222 auto l_hexValue = commonUtility::toHex(l_firstByte >> 4); in encodeKeyword() local
224 if (!l_hexValue) in encodeKeyword()
230 l_result += l_hexValue; in encodeKeyword()
232 l_hexValue = commonUtility::toHex(l_firstByte & 0x0f); in encodeKeyword()
234 if (!l_hexValue) in encodeKeyword()
240 l_result += l_hexValue; in encodeKeyword()
246 l_hexValue = commonUtility::toHex(i_keyword[i] >> 4); in encodeKeyword()
248 if (!l_hexValue) in encodeKeyword()
254 l_result += l_hexValue; in encodeKeyword()
256 l_hexValue = commonUtility::toHex(i_keyword[i] & 0x0f); in encodeKeyword()
[all …]