Home
last modified time | relevance | path

Searched refs:cchResultMax (Results 1 – 4 of 4) sorted by relevance

/reactos/dll/win32/shell32/dialogs/
H A Dfiledefext.cpp180 SH_FormatInteger(LONGLONG Num, LPWSTR pwszResult, UINT cchResultMax) in SH_FormatInteger() argument
226 cchResultMax); in SH_FormatInteger()
236 SH_FormatByteSize(LONGLONG cbSize, LPWSTR pwszResult, UINT cchResultMax) in SH_FormatByteSize() argument
239 INT cchWritten = SH_FormatInteger(cbSize, pwszResult, cchResultMax); in SH_FormatByteSize()
245 size_t cchRemaining = cchResultMax - cchWritten; in SH_FormatByteSize()
250 return cchResultMax - cchRemaining; in SH_FormatByteSize()
266 SH_FormatFileSizeWithBytes(const PULARGE_INTEGER lpQwSize, LPWSTR pwszResult, UINT cchResultMax) in SH_FormatFileSizeWithBytes() argument
269 if (StrFormatByteSizeW(lpQwSize->QuadPart, pwszResult, cchResultMax) == NULL) in SH_FormatFileSizeWithBytes()
279 size_t cchRemaining = cchResultMax - cchWritten; in SH_FormatFileSizeWithBytes()
H A Ddrvdefext.cpp47 UINT SH_FormatByteSize(LONGLONG cbSize, LPWSTR pwszResult, UINT cchResultMax);
/reactos/base/applications/taskmgr/
H A Dprocpage.c317 _Out_writes_z_(cchResultMax) LPWSTR pwszResult, in SH_FormatInteger()
318 _In_ UINT cchResultMax) in SH_FormatInteger() argument
367 cchResultMax); in SH_FormatInteger()
/reactos/base/applications/mscutils/eventvwr/
H A Deventvwr.c1101 FormatInteger(LONGLONG Num, LPWSTR pwszResult, UINT cchResultMax) in FormatInteger() argument
1151 cchResultMax); in FormatInteger()
1161 FormatByteSize(LONGLONG cbSize, LPWSTR pwszResult, UINT cchResultMax) in FormatByteSize() argument
1168 cchWritten = FormatInteger(cbSize, pwszResult, cchResultMax); in FormatByteSize()
1174 cchRemaining = cchResultMax - cchWritten; in FormatByteSize()
1180 return cchResultMax - cchRemaining; in FormatByteSize()
1184 FormatFileSizeWithBytes(const PULARGE_INTEGER lpQwSize, LPWSTR pwszResult, UINT cchResultMax) in FormatFileSizeWithBytes() argument
1191 if (StrFormatByteSizeW(lpQwSize->QuadPart, pwszResult, cchResultMax) == NULL) in FormatFileSizeWithBytes()
1201 cchRemaining = cchResultMax - cchWritten; in FormatFileSizeWithBytes()