Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/UI/FileManager/
DProgressDialog.h66 UInt64 _numShiftBits; variable
71 for (_numShiftBits = 0; range > (1 << 15); _numShiftBits++) in Init()
74 int Count(UInt64 value) { return int(value >> _numShiftBits); } in Count()
DProgressDialog2.h127 unsigned _numShiftBits; variable
130 CU64ToI32Converter(): _numShiftBits(0), _range(1) {} in CU64ToI32Converter()
135 for (_numShiftBits = 0; range >= ((UInt32)1 << 15); _numShiftBits++) in Init()
140 int res = (int)(val >> _numShiftBits); in Count()