Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Common/
DMethodId.cpp8 static inline wchar_t GetHex(Byte value) in GetHex() function
20 s[--len] = GetHex((Byte)id & 0xF); in ConvertMethodIdToString()
22 s[--len] = GetHex((Byte)id & 0xF); in ConvertMethodIdToString()
/external/lzma/CPP/7zip/Archive/7z/
D7zHandler.cpp181 static wchar_t GetHex(Byte value) in GetHex() function
187 res += GetHex((Byte)(value >> 4)); in AddHexToString()
188 res += GetHex((Byte)(value & 0xF)); in AddHexToString()
/external/lzma/CPP/7zip/UI/Console/
DMain.cpp166 static inline char GetHex(Byte value) in GetHex() function
295 stdStream << GetHex((Byte)((b >> 4) & 0xF)); in Main2()
296 stdStream << GetHex((Byte)(b & 0xF)); in Main2()
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp117 static char GetHex(Byte value) in GetHex() function
124 res += GetHex((Byte)(value >> 4)); in AddHexToString()
125 res += GetHex((Byte)(value & 0xF)); in AddHexToString()