Home
last modified time | relevance | path

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

/external/lzma/CS/7zip/Compress/LZ/
DLzOutWindow.cs9 uint _windowSize = 0; field in SevenZip.Compression.LZ.OutWindow
17 if (_windowSize != windowSize) in Create()
22 _windowSize = windowSize; in Create()
42 uint size = (len < _windowSize) ? (uint)len : _windowSize; in Train()
48 uint curSize = _windowSize - _pos; in Train()
57 if (_pos == _windowSize) in Train()
75 if (_pos >= _windowSize) in Flush()
83 if (pos >= _windowSize) in CopyBlock()
84 pos += _windowSize; in CopyBlock()
87 if (pos >= _windowSize) in CopyBlock()
[all …]
/external/lzma/Java/SevenZip/Compression/LZ/
DOutWindow.java11 int _windowSize = 0; field in OutWindow
17 if (_buffer == null || _windowSize != windowSize) in Create()
19 _windowSize = windowSize; in Create()
51 if (_pos >= _windowSize) in Flush()
60 pos += _windowSize; in CopyBlock()
63 if (pos >= _windowSize) in CopyBlock()
66 if (_pos >= _windowSize) in CopyBlock()
74 if (_pos >= _windowSize) in PutByte()
82 pos += _windowSize; in GetByte()
/external/webrtc/webrtc/modules/video_coding/utility/
Dframe_dropper.cc56 _windowSize = 0.5f; in Reset()
268 _accumulatorMax = bitRate * _windowSize; // bitRate * windowSize (in seconds) in SetRates()
Dframe_dropper.h85 float _windowSize; variable