Home
last modified time | relevance | path

Searched refs:UINT_TO_STR_2 (Results 1 - 2 of 2) sorted by relevance

/third_party/lzma/CPP/Windows/
H A DPropVariantConv.cpp10 #define UINT_TO_STR_2(c, val) { s[0] = (c); s[1] = (char)('0' + (val) / 10); s[2] = (char)('0' + (val) % 10); s += 3; } macro
39 UINT_TO_STR_2('-', st.wMonth) in ConvertUtcFileTimeToString2()
40 UINT_TO_STR_2('-', st.wDay) in ConvertUtcFileTimeToString2()
44 UINT_TO_STR_2(' ', st.wHour) in ConvertUtcFileTimeToString2()
45 UINT_TO_STR_2(':', st.wMinute) in ConvertUtcFileTimeToString2()
49 UINT_TO_STR_2(':', st.wSecond) in ConvertUtcFileTimeToString2()
/third_party/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog2.cpp593 #define UINT_TO_STR_2(val) { s[0] = (wchar_t)('0' + (val) / 10); s[1] = (wchar_t)('0' + (val) % 10); s += 2; } macro
610 UINT_TO_STR_2(hours32) in GetTimeString()
612 *s++ = ':'; UINT_TO_STR_2(minutes) in GetTimeString()
613 *s++ = ':'; UINT_TO_STR_2(seconds) in GetTimeString()

Completed in 5 milliseconds