| 132 | } |
| 133 | |
| 134 | void SubarrayTileOverlap::update_range( |
| 135 | const uint64_t range_idx_start, const uint64_t range_idx_end) { |
| 136 | iassert(contains_range(range_idx_start, range_idx_end)); |
| 137 | |
| 138 | range_idx_start_offset_ = range_idx_start - range_idx_start_; |
| 139 | range_idx_end_offset_ = range_idx_end_ - range_idx_end; |
| 140 | } |
| 141 | |
| 142 | void SubarrayTileOverlap::expand(const uint64_t range_idx_end) { |
| 143 | if (range_idx_end <= range_idx_end_) { |
no outgoing calls
no test coverage detected