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

/external/lzma/CPP/7zip/Common/
H A DMethodId.cpp8 static inline wchar_t GetHex(Byte value) function
20 s[--len] = GetHex((Byte)id & 0xF);
22 s[--len] = GetHex((Byte)id & 0xF);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandler.cpp181 static wchar_t GetHex(Byte value) function in namespace:NArchive::N7z
187 res += GetHex((Byte)(value >> 4));
188 res += GetHex((Byte)(value & 0xF));
/external/lzma/CPP/7zip/UI/Console/
H A DMain.cpp166 static inline char GetHex(Byte value) function
295 stdStream << GetHex((Byte)((b >> 4) & 0xF));
296 stdStream << GetHex((Byte)(b & 0xF));
/external/chromium_org/base/third_party/symbolize/
H A Dsymbolize.cc482 static char *GetHex(const char *start, const char *end, uint64_t *hex) { function
543 cursor = GetHex(cursor, eol, &start_address);
551 cursor = GetHex(cursor, eol, &end_address);
580 cursor = GetHex(cursor, eol, &file_offset);
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp117 static char GetHex(Byte value) function in namespace:NArchive::NXz
124 res += GetHex((Byte)(value >> 4));
125 res += GetHex((Byte)(value & 0xF));

Completed in 193 milliseconds