Home
last modified time | relevance | path

Searched refs:hash4Value (Results 1 – 2 of 2) sorted by relevance

/external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
DHash234.java28 private int hash4Value = 0; field in Hash234
63 hash4Value = temp & hash4Mask; in calcHashes()
75 return hash4Table[hash4Value]; in getHash4Pos()
81 hash4Table[hash4Value] = pos; in updateTables()
/external/lzma/C/
DLzHash.h32 hash4Value = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)); \
33 hashValue = (hash4Value ^ (p->crc[cur[4]] << 3)) & p->hashMask; \
34 hash4Value &= (kHash4Size - 1); }
52 hash4Value = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & (kHash4Size - 1); }