Searched refs:NextUncoveredBit (Results 1 - 1 of 1) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h422 IndexT NextUncoveredBit = Start; local
433 // Cover the range [NextUncoveredBit, OlapStart). This puts the start of
435 if (NextUncoveredBit < OlapStart)
436 NonOverlappingParts.emplace_back(NextUncoveredBit, OlapStart - 1);
437 NextUncoveredBit = OlapStop + 1;
438 if (NextUncoveredBit > Stop)
441 if (NextUncoveredBit <= Stop)
442 NonOverlappingParts.emplace_back(NextUncoveredBit, Stop);

Completed in 105 milliseconds