(words pair, length int, encoding meta.Encoding)
| 343 | } |
| 344 | |
| 345 | func computeSmallMetaStringHash(words pair, length int, encoding meta.Encoding) int64 { |
| 346 | hash := uint64(words[0]*31+words[1]) ^ (uint64(length) << 56) |
| 347 | return int64((hash & 0xffffffffffffff00) | uint64(encoding)) |
| 348 | } |
no test coverage detected