Home | History | Annotate | Download | only in LZ

Lines Matching refs:temp

141 				UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];

142 hash2Value = temp & (kHash2Size - 1);
143 temp ^= ((UInt32)(_bufferBase[cur + 2]) << 8);
144 hash3Value = temp & (kHash3Size - 1);
145 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;
276 UInt32 temp = CRC.Table[_bufferBase[cur]] ^ _bufferBase[cur + 1];
277 UInt32 hash2Value = temp & (kHash2Size - 1);
279 temp ^= ((UInt32)(_bufferBase[cur + 2]) << 8);
280 UInt32 hash3Value = temp & (kHash3Size - 1);
282 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask;