Home
last modified time | relevance | path

Searched refs:Overlaps (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h161 SmallVector<IntervalT, 8> Overlaps; variable
162 getOverlaps(RHS, Overlaps);
170 getNonOverlappingParts(Start, Stop, Overlaps, NonOverlappingParts);
179 SmallVector<IntervalT, 8> Overlaps; variable
180 getOverlaps(RHS, Overlaps);
183 for (IntervalT Overlap : Overlaps)
189 SmallVector<IntervalT, 8> Overlaps; in intersectWithComplement() local
190 if (!getOverlaps(Other, Overlaps)) { in intersectWithComplement()
197 for (IntervalT Overlap : Overlaps) { in intersectWithComplement()
404 SmallVectorImpl<IntervalT> &Overlaps) const { in getOverlaps() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Frontend/HLSL/
H A DRootSignatureValidations.cpp252 llvm::SmallVector<OverlappingRanges> Overlaps; in findOverlappingRanges() local
257 return Overlaps; // No ranges to overlap in findOverlappingRanges()
291 Overlaps.push_back(OverlappingRanges(&Info, Overlapping.value())); in findOverlappingRanges()
311 Overlaps.push_back(OverlappingRanges(&Info, Overlapping.value())); in findOverlappingRanges()
314 return Overlaps; in findOverlappingRanges()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DCoreFileMemoryRanges.cpp16 static bool Overlaps(const Entry *region_one, const Entry *region_two) { in Overlaps() function
43 if (Overlaps(region_one, region_two)) { in FinalizeCoreFileSaveRanges()
H A DRegisterFlags.cpp55 bool RegisterFlags::Field::Overlaps(const Field &other) const { in Overlaps() function in RegisterFlags::Field
62 assert(!Overlaps(other) && in PaddingDistance()
/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Dutxface.c635 UINT32 Overlaps; in AcpiCheckAddressRange() local
645 Overlaps = AcpiUtCheckAddressRange (SpaceId, Address, in AcpiCheckAddressRange()
649 return (Overlaps); in AcpiCheckAddressRange()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDbgEntityHistoryCalculator.cpp399 bool Overlaps = DIExpr->fragmentsOverlap(DV.getDebugExpression()); in handleNewDebugValue() local
400 if (Overlaps) { in handleNewDebugValue()
407 TrackedRegs[Op.getReg()] |= !Overlaps; in handleNewDebugValue()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterFlags.h98 bool Overlaps(const Field &other) const;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h1083 auto Overlaps = OverlappingFragments.find(
1085 if (Overlaps == OverlappingFragments.end())
1089 for (auto FragmentInfo : Overlaps->second) {
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp204 auto Overlaps = [Var, Expr](const MachineInstr *DV) { in stashEntryDbgValues() local
211 if (llvm::none_of(FrameIndexValues, Overlaps)) in stashEntryDbgValues()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaHLSL.cpp1309 llvm::SmallVector<OverlappingRanges> Overlaps = in handleRootSignatureElements() local
1311 for (OverlappingRanges Overlap : Overlaps) in handleRootSignatureElements()
1314 return Overlaps.size() != 0; in handleRootSignatureElements()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp4606 return lhs.Overlaps(rhs); in ParseFlags()