Searched refs:hash2Value (Results 1 – 6 of 6) sorted by relevance
/external/lzma/C/ |
D | LzHash.h | 19 hash2Value = temp & (kHash2Size - 1); \ 24 hash2Value = temp & (kHash2Size - 1); \ 30 hash2Value = temp & (kHash2Size - 1); \ 41 hash2Value = (p->crc[cur[0]] ^ cur[1]) & (kHash2Size - 1); 45 hash2Value = temp & (kHash2Size - 1); \ 50 hash2Value = temp & (kHash2Size - 1); \
|
D | LzFind.c | 510 UInt32 hash2Value, delta2, maxLen, offset; in Bt3_MatchFinder_GetMatches() local 515 delta2 = p->pos - p->hash[hash2Value]; in Bt3_MatchFinder_GetMatches() 518 p->hash[hash2Value] = in Bt3_MatchFinder_GetMatches() 543 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Bt4_MatchFinder_GetMatches() local 548 delta2 = p->pos - p->hash[ hash2Value]; in Bt4_MatchFinder_GetMatches() 552 p->hash[ hash2Value] = in Bt4_MatchFinder_GetMatches() 590 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Hc4_MatchFinder_GetMatches() local 595 delta2 = p->pos - p->hash[ hash2Value]; in Hc4_MatchFinder_GetMatches() 599 p->hash[ hash2Value] = in Hc4_MatchFinder_GetMatches() 679 UInt32 hash2Value; in Bt3_MatchFinder_Skip() local [all …]
|
D | LzFindMt.c | 560 UInt32 hash2Value, curMatch2; in MixMatches2() local 566 curMatch2 = hash[hash2Value]; in MixMatches2() 567 hash[hash2Value] = lzPos; in MixMatches2() 580 UInt32 hash2Value, hash3Value, curMatch2, curMatch3; in MixMatches3() local 586 curMatch2 = hash[ hash2Value]; in MixMatches3() 589 hash[ hash2Value] = in MixMatches3() 728 UInt32 hash2Value; 730 hash[hash2Value] = p->lzPos; 737 UInt32 hash2Value, hash3Value; 740 hash[ hash2Value] =
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/ |
D | Hash234.java | 26 private int hash2Value = 0; field in Hash234 57 hash2Value = temp & HASH_2_MASK; in calcHashes() 67 return hash2Table[hash2Value]; in getHash2Pos() 79 hash2Table[hash2Value] = pos; in updateTables()
|
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 137 int hashValue, hash2Value = 0, hash3Value = 0; in GetMatches() local 142 hash2Value = temp & (kHash2Size - 1); in GetMatches() 153 int curMatch2 = _hash[hash2Value]; in GetMatches() 155 _hash[hash2Value] = _pos; in GetMatches() 277 int hash2Value = temp & (kHash2Size - 1); in Skip() local 278 _hash[hash2Value] = _pos; in Skip()
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 137 UInt32 hashValue, hash2Value = 0, hash3Value = 0; in GetMatches() 142 hash2Value = temp & (kHash2Size - 1); in GetMatches() 153 UInt32 curMatch2 = _hash[hash2Value]; in GetMatches() 155 _hash[hash2Value] = _pos; in GetMatches() 277 UInt32 hash2Value = temp & (kHash2Size - 1); in Skip() 278 _hash[hash2Value] = _pos; in Skip()
|