(b []byte)
| 328 | } |
| 329 | |
| 330 | func bytesToInt64(b []byte) int64 { |
| 331 | var v int64 |
| 332 | for i := range b { |
| 333 | v |= int64(b[i]) << (8 * i) |
| 334 | } |
| 335 | return v |
| 336 | } |
| 337 | |
| 338 | func smallMetaStringWords(data []byte) pair { |
| 339 | if len(data) <= 8 { |
no test coverage detected