Searched refs:subValue (Results 1 – 7 of 7) sorted by relevance
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | InWindow.java | 124 public void ReduceOffsets(int subValue) in ReduceOffsets() argument 126 _bufferOffset += subValue; in ReduceOffsets() 127 _posLimit -= subValue; in ReduceOffsets() 128 _pos -= subValue; in ReduceOffsets() 129 _streamPos -= subValue; in ReduceOffsets()
|
D | BinTree.java | 344 void NormalizeLinks(int[] items, int numItems, int subValue) in NormalizeLinks() argument 349 if (value <= subValue) in NormalizeLinks() 352 value -= subValue; in NormalizeLinks() 359 int subValue = _pos - _cyclicBufferSize; in Normalize() local 360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue); in Normalize() 361 NormalizeLinks(_hash, _hashSizeSum, subValue); in Normalize() 362 ReduceOffsets(subValue); in Normalize()
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzInWindow.cs | 124 public void ReduceOffsets(Int32 subValue) in ReduceOffsets() argument 126 _bufferOffset += (UInt32)subValue; in ReduceOffsets() 127 _posLimit -= (UInt32)subValue; in ReduceOffsets() 128 _pos -= (UInt32)subValue; in ReduceOffsets() 129 _streamPos -= (UInt32)subValue; in ReduceOffsets()
|
D | LzBinTree.cs | 344 void NormalizeLinks(UInt32[] items, UInt32 numItems, UInt32 subValue) in NormalizeLinks() argument 349 if (value <= subValue) in NormalizeLinks() 352 value -= subValue; in NormalizeLinks() 359 UInt32 subValue = _pos - _cyclicBufferSize; in Normalize() 360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue); in Normalize() 361 NormalizeLinks(_hash, _hashSizeSum, subValue); in Normalize() 362 ReduceOffsets((Int32)subValue); in Normalize()
|
/external/lzma/C/ |
D | LzFind.c | 52 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets() argument 54 p->posLimit -= subValue; in MatchFinder_ReduceOffsets() 55 p->pos -= subValue; in MatchFinder_ReduceOffsets() 56 p->streamPos -= subValue; in MatchFinder_ReduceOffsets() 292 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems) in MatchFinder_Normalize3() argument 298 if (value <= subValue) in MatchFinder_Normalize3() 301 value -= subValue; in MatchFinder_Normalize3() 308 UInt32 subValue = MatchFinder_GetSubValue(p); in MatchFinder_Normalize() local 309 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons); in MatchFinder_Normalize() 310 MatchFinder_ReduceOffsets(p, subValue); in MatchFinder_Normalize()
|
D | LzFind.h | 71 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems); 72 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
|
D | LzFindMt.c | 193 UInt32 subValue = (mf->pos - mf->historySize - 1); in HashThreadFunc() local 194 MatchFinder_ReduceOffsets(mf, subValue); in HashThreadFunc() 195 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, mf->hashMask + 1); in HashThreadFunc() 395 UInt32 subValue = p->pos - p->cyclicBufferSize; in BtFillBlock() local 396 MatchFinder_Normalize3(subValue, p->son, p->cyclicBufferSize * 2); in BtFillBlock() 397 p->pos -= subValue; in BtFillBlock()
|