(a, b []uint64)
| 311 | } |
| 312 | |
| 313 | func bitmapEquals(a, b []uint64) bool { |
| 314 | if len(a) != len(b) { |
| 315 | return false |
| 316 | } |
| 317 | for i, v := range a { |
| 318 | if v != b[i] { |
| 319 | return false |
| 320 | } |
| 321 | } |
| 322 | return true |
| 323 | } |
| 324 | |
| 325 | func (bc *bitmapContainer) fillLeastSignificant16bits(x []uint32, i int, mask uint32) int { |
| 326 | // TODO: should be written as optimized assembly |
no outgoing calls
no test coverage detected
searching dependent graphs…