Searched refs:intersectionBuckets (Results 1 – 1 of 1) sorted by relevance
1614 std::vector<SmallVector<NestedMatch, 8>> &intersectionBuckets) { in computeIntersectionBuckets() argument1615 assert(intersectionBuckets.empty() && "Expected empty output"); in computeIntersectionBuckets()1622 for (int i = 0, end = intersectionBuckets.size(); i < end; ++i) { in computeIntersectionBuckets()1626 intersectionBuckets[i].push_back(match); in computeIntersectionBuckets()1634 intersectionBuckets[i].push_back(match); in computeIntersectionBuckets()1644 intersectionBuckets.emplace_back(); in computeIntersectionBuckets()1645 intersectionBuckets.back().push_back(match); in computeIntersectionBuckets()1682 std::vector<SmallVector<NestedMatch, 8>> intersectionBuckets; in vectorizeLoops() local1683 computeIntersectionBuckets(allMatches, intersectionBuckets); in vectorizeLoops()1688 for (auto &intersectingMatches : intersectionBuckets) { in vectorizeLoops()