HomeSort by relevance Sort by last modified time
    Searched refs:GetHex (Results 1 - 6 of 6) sorted by null

  /external/lzma/CPP/7zip/UI/Common/
PropIDUtils.cpp 173 static inline unsigned GetHex(unsigned v)
182 res += (char)GetHex(v >> 4);
183 res += (char)GetHex(v & 0xF);
568 s += (wchar_t)GetHex((b >> 4) & 0xF);
569 s += (wchar_t)GetHex(b & 0xF);
HashCalc.cpp 317 static inline char GetHex(unsigned v)
347 dest[0] = GetHex((b >> 4) & 0xF);
348 dest[1] = GetHex(b & 0xF);
  /external/lzma/CPP/7zip/Archive/7z/
7zHandler.cpp 85 static inline char GetHex(unsigned value)
95 s[--len] = GetHex((unsigned)id & 0xF); id >>= 4;
96 s[--len] = GetHex((unsigned)id & 0xF); id >>= 4;
142 res += GetHex((Byte)(value >> 4));
143 res += GetHex((Byte)(value & 0xF));
  /external/lzma/CPP/7zip/Archive/
XzHandler.cpp 161 static inline char GetHex(unsigned value)
168 s += GetHex(value >> 4);
169 s += GetHex(value & 0xF);
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 510 static inline char GetHex(Byte value)
520 dest[0] = GetHex((Byte)((b >> 4) & 0xF));
521 dest[1] = GetHex((Byte)(b & 0xF));
Main.cpp 239 static inline char GetHex(unsigned val)
706 so << GetHex((b >> 4) & 0xF);
707 so << GetHex(b & 0xF);

Completed in 169 milliseconds