HomeSort by relevance Sort by last modified time
    Searched full:_son (Results 1 - 2 of 2) sorted by null

  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 13 UInt32[] _son; field in class:SevenZip.Compression.LZ.BinTree
95 _son = new UInt32[(_cyclicBufferSize = cyclicBufferSize) * 2];
206 _son[ptr0] = _son[ptr1] = kEmptyHashValue;
227 _son[ptr1] = _son[cyclicPos];
228 _son[ptr0] = _son[cyclicPos + 1];
235 _son[ptr1] = curMatch;
237 curMatch = _son[ptr1];
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 13 int[] _son; field in class:BinTree
95 _son = new int[(_cyclicBufferSize = cyclicBufferSize) * 2];
206 _son[ptr0] = _son[ptr1] = kEmptyHashValue;
227 _son[ptr1] = _son[cyclicPos];
228 _son[ptr0] = _son[cyclicPos + 1];
235 _son[ptr1] = curMatch;
237 curMatch = _son[ptr1];
    [all...]

Completed in 90 milliseconds