Searched refs:hash3Value (Results 1 – 5 of 5) sorted by relevance
/external/lzma/C/ |
D | LzHash.h | 25 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \ 31 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \ 46 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); } 51 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
|
D | LzFind.c | 541 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Bt4_MatchFinder_GetMatches() local 547 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value]; in Bt4_MatchFinder_GetMatches() 551 p->hash[kFix3HashSize + hash3Value] = in Bt4_MatchFinder_GetMatches() 588 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Hc4_MatchFinder_GetMatches() local 594 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value]; in Hc4_MatchFinder_GetMatches() 598 p->hash[kFix3HashSize + hash3Value] = in Hc4_MatchFinder_GetMatches() 692 UInt32 hash2Value, hash3Value; in Bt4_MatchFinder_Skip() local 697 p->hash[kFix3HashSize + hash3Value] = p->pos; in Bt4_MatchFinder_Skip() 708 UInt32 hash2Value, hash3Value; in Hc4_MatchFinder_Skip() local 713 p->hash[kFix3HashSize + hash3Value] = in Hc4_MatchFinder_Skip()
|
D | LzFindMt.c | 579 UInt32 hash2Value, hash3Value, curMatch2, curMatch3; in MixMatches3() local 586 curMatch3 = hash[kFix3HashSize + hash3Value]; in MixMatches3() 589 hash[kFix3HashSize + hash3Value] = in MixMatches3() 736 UInt32 hash2Value, hash3Value; 738 hash[kFix3HashSize + hash3Value] =
|
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 137 int hashValue, hash2Value = 0, hash3Value = 0; in GetMatches() local 144 hash3Value = temp & (kHash3Size - 1); in GetMatches() 154 int curMatch3 = _hash[kHash3Offset + hash3Value]; in GetMatches() 156 _hash[kHash3Offset + hash3Value] = _pos; in GetMatches() 280 int hash3Value = temp & (kHash3Size - 1); in Skip() local 281 _hash[kHash3Offset + hash3Value] = _pos; in Skip()
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 137 UInt32 hashValue, hash2Value = 0, hash3Value = 0; in GetMatches() 144 hash3Value = temp & (kHash3Size - 1); in GetMatches() 154 UInt32 curMatch3 = _hash[kHash3Offset + hash3Value]; in GetMatches() 156 _hash[kHash3Offset + hash3Value] = _pos; in GetMatches() 280 UInt32 hash3Value = temp & (kHash3Size - 1); in Skip() 281 _hash[kHash3Offset + hash3Value] = _pos; in Skip()
|