Home
last modified time | relevance | path

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

/third_party/lzma/CPP/7zip/UI/Common/
H A DPropIDUtils.cpp265 static inline unsigned GetHex(unsigned v) in GetHex() function
272 res += (char)GetHex(v >> 4); in AddHexToString()
273 res += (char)GetHex(v & 0xF); in AddHexToString()
733 s += (char)GetHex((b >> 4) & 0xF); in ConvertNtReparseToString()
734 s += (char)GetHex(b & 0xF); in ConvertNtReparseToString()
/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zHandler.cpp84 static inline char GetHex(unsigned value) in GetHex() function
94 s[--len] = GetHex((unsigned)id & 0xF); id >>= 4; in ConvertMethodIdToString_Back()
95 s[--len] = GetHex((unsigned)id & 0xF); id >>= 4; in ConvertMethodIdToString_Back()
168 res += GetHex((Byte)(value >> 4));
169 res += GetHex((Byte)(value & 0xF));
/third_party/lzma/CPP/7zip/UI/Console/
H A DList.cpp523 static inline char GetHex(Byte value) in GetHex() function
533 dest[0] = GetHex((Byte)((b >> 4) & 0xF)); in HexToString()
534 dest[1] = GetHex((Byte)(b & 0xF)); in HexToString()
H A DMain.cpp383 static inline char GetHex(unsigned val) in GetHex() function
1113 so << GetHex((b >> 4) & 0xF);
1114 so << GetHex(b & 0xF);
/third_party/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp210 static inline char GetHex(unsigned value) in GetHex() function
217 s += GetHex(value >> 4); in AddHexToString()
218 s += GetHex(value & 0xF); in AddHexToString()

Completed in 8 milliseconds