Home
last modified time | relevance | path

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

/external/lzma/CPP/Windows/
DPropVariantConv.cpp10 #define UINT_TO_STR_2(c, val) { s[0] = (c); s[1] = (char)('0' + (val) / 10); s[2] = (char)('0' + (v… macro
36 UINT_TO_STR_2('-', st.wMonth); in ConvertUtcFileTimeToString()
37 UINT_TO_STR_2('-', st.wDay); in ConvertUtcFileTimeToString()
41 UINT_TO_STR_2(' ', st.wHour); in ConvertUtcFileTimeToString()
42 UINT_TO_STR_2(':', st.wMinute); in ConvertUtcFileTimeToString()
46 UINT_TO_STR_2(':', st.wSecond); in ConvertUtcFileTimeToString()
/external/lzma/CPP/7zip/UI/FileManager/
DProgressDialog2.cpp584 #define UINT_TO_STR_2(val) { s[0] = (wchar_t)('0' + (val) / 10); s[1] = (wchar_t)('0' + (val) % 10)… macro
600 UINT_TO_STR_2(hours32); in GetTimeString()
602 *s++ = ':'; UINT_TO_STR_2(minutes); in GetTimeString()
603 *s++ = ':'; UINT_TO_STR_2(seconds); in GetTimeString()