Searched defs:subValue (Results 1 - 8 of 8) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
H A DInWindow.java117 public void ReduceOffsets (int subValue) { argument
118 _bufferOffset += subValue;
119 _posLimit -= subValue;
120 _pos -= subValue;
121 _streamPos -= subValue;
H A DBinTree.java276 void NormalizeLinks (int[] items, int numItems, int subValue) { argument
279 if (value <= subValue)
282 value -= subValue;
288 int subValue = _pos - _cyclicBufferSize;
289 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue);
290 NormalizeLinks(_hash, _hashSizeSum, subValue);
291 ReduceOffsets(subValue);
/external/lzma/CS/7zip/Compress/LZ/
H A DLzInWindow.cs124 public void ReduceOffsets(Int32 subValue) argument
126 _bufferOffset += (UInt32)subValue;
127 _posLimit -= (UInt32)subValue;
128 _pos -= (UInt32)subValue;
129 _streamPos -= (UInt32)subValue;
H A DLzBinTree.cs344 void NormalizeLinks(UInt32[] items, UInt32 numItems, UInt32 subValue) argument
349 if (value <= subValue)
352 value -= subValue;
359 UInt32 subValue = _pos - _cyclicBufferSize;
360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue);
361 NormalizeLinks(_hash, _hashSizeSum, subValue);
362 ReduceOffsets((Int32)subValue);
/external/lzma/Java/SevenZip/Compression/LZ/
H A DInWindow.java124 public void ReduceOffsets(int subValue) argument
126 _bufferOffset += subValue;
127 _posLimit -= subValue;
128 _pos -= subValue;
129 _streamPos -= subValue;
H A DBinTree.java344 void NormalizeLinks(int[] items, int numItems, int subValue) argument
349 if (value <= subValue)
352 value -= subValue;
359 int subValue = _pos - _cyclicBufferSize;
360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue);
361 NormalizeLinks(_hash, _hashSizeSum, subValue);
362 ReduceOffsets(subValue);
/external/lzma/C/
H A DLzFind.c52 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) argument
54 p->posLimit -= subValue;
55 p->pos -= subValue;
56 p->streamPos -= subValue;
292 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems) argument
298 if (value <= subValue)
301 value -= subValue;
308 UInt32 subValue = MatchFinder_GetSubValue(p); local
309 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons);
310 MatchFinder_ReduceOffsets(p, subValue);
[all...]
H A DLzFindMt.c193 UInt32 subValue = (mf->pos - mf->historySize - 1); local
194 MatchFinder_ReduceOffsets(mf, subValue);
195 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, mf->hashMask + 1);
395 UInt32 subValue = p->pos - p->cyclicBufferSize; local
396 MatchFinder_Normalize3(subValue, p->son, p->cyclicBufferSize * 2);
397 p->pos -= subValue;

Completed in 757 milliseconds