OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_Total
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/7zip/UI/Console/
PercentPrinter.h
13
UInt64
m_Total
;
19
m_PrevValue(0), m_CurValue(0),
m_Total
((UInt64)(Int64)-1), m_NumExtraChars(0) {}
20
void SetTotal(UInt64 total) {
m_Total
= total; m_PrevValue = 0; }
PercentPrinter.cpp
58
if (
m_Total
== (UInt64)(Int64)-1)
63
else if (
m_Total
!= 0)
64
value = m_CurValue * 100 /
m_Total
;
Completed in 45 milliseconds