Home
last modified time | relevance | path

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

/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.c541 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()
DLzFindMt.c579 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/chromium_org/third_party/lzma_sdk/
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.c541 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()
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
DLzHash.h26 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
32 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
47 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); }
52 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
DLzFind.c542 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Bt4_MatchFinder_GetMatches() local
548 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value]; in Bt4_MatchFinder_GetMatches()
552 p->hash[kFix3HashSize + hash3Value] = in Bt4_MatchFinder_GetMatches()
589 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Hc4_MatchFinder_GetMatches() local
595 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value]; in Hc4_MatchFinder_GetMatches()
599 p->hash[kFix3HashSize + hash3Value] = in Hc4_MatchFinder_GetMatches()
693 UInt32 hash2Value, hash3Value; in Bt4_MatchFinder_Skip() local
698 p->hash[kFix3HashSize + hash3Value] = p->pos; in Bt4_MatchFinder_Skip()
709 UInt32 hash2Value, hash3Value; in Hc4_MatchFinder_Skip() local
714 p->hash[kFix3HashSize + hash3Value] = in Hc4_MatchFinder_Skip()
/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()