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

/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/
H A DEncoder.java58 int[] _repDistances = new int[Base.kNumRepDistances]; field in class:Encoder
64 _repDistances[i] = 0;
518 reps[i] = _repDistances[i];
536 byte matchByte = _matchFinder.GetIndexByte(0 - _repDistances[0] - 1 - 1);
992 byte matchByte = _matchFinder.GetIndexByte((int)(0 - _repDistances[0] - 1 - _additionalOffset));
1023 int distance = _repDistances[pos];
1026 _repDistances[i] = _repDistances[i - 1];
1027 _repDistances[0] = distance;
1053 _repDistances[
[all...]
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs55 UInt32[] _repDistances = new UInt32[Base.kNumRepDistances]; field in class:SevenZip.Compression.LZMA.Encoder
62 _repDistances[i] = 0;
575 reps[i] = _repDistances[i];
596 Byte matchByte = _matchFinder.GetIndexByte((Int32)(0 - _repDistances[0] - 1 - 1));
1122 Byte matchByte = _matchFinder.GetIndexByte((Int32)(0 - _repDistances[0] - 1 - _additionalOffset));
1162 UInt32 distance = _repDistances[pos];
1166 _repDistances[i] = _repDistances[i - 1];
1167 _repDistances[0] = distance;
1198 _repDistances[
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java55 int[] _repDistances = new int[Base.kNumRepDistances]; field in class:Encoder
62 _repDistances[i] = 0;
575 reps[i] = _repDistances[i];
596 byte matchByte = _matchFinder.GetIndexByte(0 - _repDistances[0] - 1 - 1);
1120 byte matchByte = _matchFinder.GetIndexByte((int)(0 - _repDistances[0] - 1 - _additionalOffset));
1160 int distance = _repDistances[pos];
1164 _repDistances[i] = _repDistances[i - 1];
1165 _repDistances[0] = distance;
1196 _repDistances[
[all...]

Completed in 77 milliseconds