Home
last modified time | relevance | path

Searched refs:hash3Value (Results 1 – 6 of 6) sorted by relevance

/external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
DHash234.java27 private int hash3Value = 0; field in Hash234
60 hash3Value = temp & HASH_3_MASK; in calcHashes()
71 return hash3Table[hash3Value]; in getHash3Pos()
80 hash3Table[hash3Value] = pos; in updateTables()
/external/lzma/C/
DLzHash.h25 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); \
DLzFind.c543 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Bt4_MatchFinder_GetMatches() local
549 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value]; in Bt4_MatchFinder_GetMatches()
553 p->hash[kFix3HashSize + hash3Value] = in Bt4_MatchFinder_GetMatches()
590 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Hc4_MatchFinder_GetMatches() local
596 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value]; in Hc4_MatchFinder_GetMatches()
600 p->hash[kFix3HashSize + hash3Value] = in Hc4_MatchFinder_GetMatches()
694 UInt32 hash2Value, hash3Value; in Bt4_MatchFinder_Skip() local
699 p->hash[kFix3HashSize + hash3Value] = p->pos; in Bt4_MatchFinder_Skip()
710 UInt32 hash2Value, hash3Value; in Hc4_MatchFinder_Skip() local
715 p->hash[kFix3HashSize + hash3Value] = in Hc4_MatchFinder_Skip()
DLzFindMt.c580 UInt32 hash2Value, hash3Value, curMatch2, curMatch3; in MixMatches3() local
587 curMatch3 = hash[kFix3HashSize + hash3Value]; in MixMatches3()
590 hash[kFix3HashSize + hash3Value] = in MixMatches3()
737 UInt32 hash2Value, hash3Value;
739 hash[kFix3HashSize + hash3Value] =
/external/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java137 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/
DLzBinTree.cs137 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()