HomeSort by relevance Sort by last modified time
    Searched refs:hash3Value (Results 1 - 6 of 6) sorted by null

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
Hash234.java 27 private int hash3Value = 0;
60 hash3Value = temp & HASH_3_MASK;
71 return hash3Table[hash3Value];
80 hash3Table[hash3Value] = pos;
  /external/lzma/C/
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); \
LzFind.c 543 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset;
549 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value];
553 p->hash[kFix3HashSize + hash3Value] =
590 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset;
596 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value];
600 p->hash[kFix3HashSize + hash3Value] =
694 UInt32 hash2Value, hash3Value;
699 p->hash[kFix3HashSize + hash3Value] = p->pos;
710 UInt32 hash2Value, hash3Value;
715 p->hash[kFix3HashSize + hash3Value] =
    [all...]
LzFindMt.c 580 UInt32 hash2Value, hash3Value, curMatch2, curMatch3;
587 curMatch3 = hash[kFix3HashSize + hash3Value];
590 hash[kFix3HashSize + hash3Value] =
615 UInt32 hash2Value, hash3Value, hash4Value, curMatch2, curMatch3, curMatch4;
622 curMatch3 = hash[kFix3HashSize + hash3Value];
626 hash[kFix3HashSize + hash3Value] =
737 UInt32 hash2Value, hash3Value;
739 hash[kFix3HashSize + hash3Value] =
749 UInt32 hash2Value, hash3Value, hash4Value;
752 hash[kFix3HashSize + hash3Value] =
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 137 int hashValue, hash2Value = 0, hash3Value = 0;
144 hash3Value = temp & (kHash3Size - 1);
154 int curMatch3 = _hash[kHash3Offset + hash3Value];
156 _hash[kHash3Offset + hash3Value] = _pos;
280 int hash3Value = temp & (kHash3Size - 1);
281 _hash[kHash3Offset + hash3Value] = _pos;
  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 137 UInt32 hashValue, hash2Value = 0, hash3Value = 0;
144 hash3Value = temp & (kHash3Size - 1);
154 UInt32 curMatch3 = _hash[kHash3Offset + hash3Value];
156 _hash[kHash3Offset + hash3Value] = _pos;
280 UInt32 hash3Value = temp & (kHash3Size - 1);
281 _hash[kHash3Offset + hash3Value] = _pos;

Completed in 176 milliseconds