Home
last modified time | relevance | path

Searched refs:subValue (Results 1 - 7 of 7) sorted by relevance

/third_party/lzma/C/
H A DLzFind.c683 LzFind_SaturSub_128(UInt32 subValue, CLzRef *items, const CLzRef *lim) in LzFind_SaturSub_128() argument
687 vdupq_n_u32(subValue); in LzFind_SaturSub_128()
689 _mm_set_epi32((Int32)subValue, (Int32)subValue, (Int32)subValue, (Int32)subValue); in LzFind_SaturSub_128()
731 LzFind_SaturSub_256(UInt32 subValue, CLzRef *items, const CLzRef *lim) in LzFind_SaturSub_256() argument
734 (Int32)subValue, (Int32)subValue, (Int32)subValue, (Int3 in LzFind_SaturSub_256()
771 LzFind_SaturSub_32(UInt32 subValue, CLzRef *items, const CLzRef *lim) LzFind_SaturSub_32() argument
788 MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems) MatchFinder_Normalize3() argument
849 const UInt32 subValue = (p->pos - p->historySize - 1) /* & ~(UInt32)(kNormalizeAlign - 1) */; MatchFinder_CheckLimits() local
[all...]
H A DLzFind.h103 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems);
111 // void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
112 #define MatchFinder_REDUCE_OFFSETS(p, subValue) \
113 (p)->pos -= (subValue); \
114 (p)->streamPos -= (subValue);
H A DLzFindMt.c521 const UInt32 subValue = (mf->pos - mf->historySize - 1); // & ~(UInt32)(kNormalizeAlign - 1); in HashThreadFunc() local
522 MatchFinder_REDUCE_OFFSETS(mf, subValue) in HashThreadFunc()
523 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, (size_t)mf->hashMask + 1); in HashThreadFunc()
662 const UInt32 subValue = (pos - p->cyclicBufferSize); // & ~(UInt32)(kNormalizeAlign - 1); in BtGetMatches() local
663 pos -= subValue; in BtGetMatches()
665 MatchFinder_Normalize3(subValue, p->son, (size_t)p->cyclicBufferSize * 2); in BtGetMatches()
974 const UInt32 subValue = (p->lzPos - p->historySize - 1); // & ~(UInt32)(kNormalizeAlign - 1); in MatchFinderMt_GetNextBlock_Bt() local
975 p->lzPos -= subValue; in MatchFinderMt_GetNextBlock_Bt()
976 MatchFinder_Normalize3(subValue, p->hash, p->fixedHashSize); in MatchFinderMt_GetNextBlock_Bt()
/third_party/lzma/Java/SevenZip/Compression/LZ/
H A DInWindow.java124 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()
H A DBinTree.java344 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()
360 NormalizeLinks(_son, _cyclicBufferSize * 2, subValue); in Normalize()
361 NormalizeLinks(_hash, _hashSizeSum, subValue); in Normalize()
362 ReduceOffsets(subValue); in Normalize()
/third_party/lzma/CS/7zip/Compress/LZ/
H A DLzInWindow.cs124 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()
H A DLzBinTree.cs344 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()

Completed in 8 milliseconds