HomeSort by relevance Sort by last modified time
    Searched defs:hash3Value (Results 1 - 5 of 5) 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/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/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
BinTree.java 108 int hashValue, hash2Value = 0, hash3Value = 0;
114 hash3Value = temp & (kHash3Size - 1);
122 int curMatch3 = _hash[kHash3Offset + hash3Value];
124 _hash[kHash3Offset + hash3Value] = _pos;
223 int hash3Value = temp & (kHash3Size - 1);
224 _hash[kHash3Offset + hash3Value] = _pos;
  /external/lzma/C/
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...]

Completed in 101 milliseconds