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

/external/lzma/CPP/7zip/Common/
H A DMethodProps.cpp17 UInt32 reducedDictionarySize = 1 << 10; local
22 const UInt32 step = (reducedDictionarySize >> 1);
23 if (reducedDictionarySize >= *inSizeForReduce)
28 reducedDictionarySize += step;
29 if (reducedDictionarySize >= *inSizeForReduce)
34 if (reducedDictionarySize >= ((UInt32)3 << 30))
36 reducedDictionarySize += step;
62 // if (tryReduce && prop.Id == NCoderPropID::kDictionarySize && value.vt == VT_UI4 && reducedDictionarySize < value.ulVal)
66 if (reducedDictionarySize < value.ulVal)
67 value.ulVal = reducedDictionarySize;
[all...]

Completed in 465 milliseconds