Home
last modified time | relevance | path

Searched refs:Intersection (Results 1 – 16 of 16) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp133 Interval Intersection = intersect(CachedExtent, RequestExtent); in readBytes() local
136 if (Intersection != RequestExtent) in readBytes()
140 AbsoluteDifference(CachedExtent.first, Intersection.first); in readBytes()
295 auto Intersection = intersect(WriteInterval, CachedInterval); in fixCacheAfterWrite() local
296 assert(Intersection.first <= Intersection.second); in fixCacheAfterWrite()
298 uint64_t Length = Intersection.second - Intersection.first; in fixCacheAfterWrite()
300 AbsoluteDifference(WriteInterval.first, Intersection.first); in fixCacheAfterWrite()
302 AbsoluteDifference(CachedInterval.first, Intersection.first); in fixCacheAfterWrite()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DHLSLRuntime.h46 ENUM_COMPARE_ASSERT(Intersection)
H A DLangOptions.h71 Intersection, enumerator
H A DAttr.td4330 "RayGeneration", "Intersection", "AnyHit", "ClosestHit",
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DVectorUtils.cpp762 SmallVector<Metadata *, 4> Intersection; in intersectAccessGroups() local
766 Intersection.push_back(MD1); in intersectAccessGroups()
772 Intersection.push_back(Item); in intersectAccessGroups()
776 if (Intersection.size() == 0) in intersectAccessGroups()
778 if (Intersection.size() == 1) in intersectAccessGroups()
779 return cast<MDNode>(Intersection.front()); in intersectAccessGroups()
782 return MDNode::get(Ctx, Intersection); in intersectAccessGroups()
H A DDependenceAnalysis.cpp3758 SmallBitVector Intersection = Pair[SI].GroupLoops; in depends() local
3759 Intersection &= Pair[SJ].GroupLoops; in depends()
3760 if (Intersection.any()) { in depends()
4093 SmallBitVector Intersection = Pair[SI].GroupLoops; in getSplitIteration() local
4094 Intersection &= Pair[SJ].GroupLoops; in getSplitIteration()
4095 if (Intersection.any()) { in getSplitIteration()
H A DValueTracking.cpp8293 ConstantRange Intersection = DomCR.intersectWith(CR); in isImpliedCondCommonOperandWithConstants() local
8295 if (Intersection.isEmptySet()) in isImpliedCondCommonOperandWithConstants()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp2031 std::set<unsigned> Intersection; in computeRegUnitSets() local
2036 std::inserter(Intersection, Intersection.begin())); in computeRegUnitSets()
2037 if (Intersection.empty()) in computeRegUnitSets()
2242 CodeGenRegister::Vec Intersection; in inferCommonSubClass() local
2245 std::inserter(Intersection, Intersection.begin()), in inferCommonSubClass()
2249 if (Intersection.empty()) in inferCommonSubClass()
2257 getOrCreateSubClass(RC1, &Intersection, in inferCommonSubClass()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DTriple.h272 Intersection, enumerator
792 Env == Triple::Intersection || Env == Triple::AnyHit || in isShaderStageEnvironment()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1168 auto *Intersection = (OpValue == nullptr) ? dyn_cast<Instruction>(VL[0]) in propagateIRFlags() local
1170 if (!Intersection) in propagateIRFlags()
1172 const unsigned Opcode = Intersection->getOpcode(); in propagateIRFlags()
1173 VecOp->copyIRFlags(Intersection, IncludeWrapFlags); in propagateIRFlags()
/freebsd-14.2/contrib/llvm-project/llvm/lib/TargetParser/
H A DTriple.cpp319 case Intersection: return "intersection"; in getEnvironmentTypeName()
688 .StartsWith("intersection", Triple::Intersection) in parseEnvironment()
1962 static_assert(Triple::Intersection - Triple::Pixel == 8,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp1092 std::vector<Value *> Intersection; in shouldSplit() local
1094 Bases.end(), std::back_inserter(Intersection)); in shouldSplit()
1095 if (Intersection.empty()) { in shouldSplit()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1360 ConstantRange Intersection = DominatingCR.intersectWith(CR); in foldICmpWithDominatingICmp() local
1362 if (Intersection.isEmptySet()) in foldICmpWithDominatingICmp()
1383 if (const APInt *EqC = Intersection.getSingleElement()) in foldICmpWithDominatingICmp()
/freebsd-14.2/contrib/one-true-awk/testdir/
H A Dfunstack.ok2932 Keyword Conflicts and Intersection
H A Dfunstack.in22321 …title = "Covering Edges by Cliques with Regard to Keyword Conflicts and Intersection Graphs…
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp12554 case HLSLShaderAttr::Intersection: in CheckHLSLEntryPoint()