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

/external/lzma/CPP/7zip/UI/Common/
H A DPropIDUtils.cpp154 static inline char GetHex(Byte value) function
163 res += GetHex((Byte)(value >> 4));
164 res += GetHex((Byte)(value & 0xF));
547 s += (wchar_t)GetHex((Byte)((b >> 4) & 0xF));
548 s += (wchar_t)GetHex((Byte)(b & 0xF));
H A DHashCalc.cpp330 static inline char GetHex(Byte value) function
357 dest[0] = GetHex((Byte)((b >> 4) & 0xF));
358 dest[1] = GetHex((Byte)(b & 0xF));
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandler.cpp81 static inline char GetHex(unsigned value) function in namespace:NArchive::N7z
91 s[--len] = GetHex((unsigned)id & 0xF); id >>= 4;
92 s[--len] = GetHex((unsigned)id & 0xF); id >>= 4;
138 res += GetHex((Byte)(value >> 4));
139 res += GetHex((Byte)(value & 0xF));
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp202 static inline char GetHex(unsigned value) function in namespace:NArchive::NXz
209 s += GetHex(value >> 4);
210 s += GetHex(value & 0xF);
/external/lzma/CPP/7zip/UI/Console/
H A DList.cpp470 static inline char GetHex(Byte value) function
480 dest[0] = GetHex((Byte)((b >> 4) & 0xF));
481 dest[1] = GetHex((Byte)(b & 0xF));
H A DMain.cpp202 static inline char GetHex(unsigned val) function
599 stdStream << GetHex((b >> 4) & 0xF);
600 stdStream << GetHex(b & 0xF);

Completed in 471 milliseconds