Home
last modified time | relevance | path

Searched refs:IsSmall (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallSet.h48 bool IsSmall; variable
51 SmallSetIterator(SetIterTy SetIter) : SetIter(SetIter), IsSmall(false) {} in SmallSetIterator()
53 SmallSetIterator(VecIterTy VecIter) : VecIter(VecIter), IsSmall(true) {} in SmallSetIterator()
58 if (IsSmall) in ~SmallSetIterator()
64 SmallSetIterator(const SmallSetIterator &Other) : IsSmall(Other.IsSmall) { in SmallSetIterator()
65 if (IsSmall) in SmallSetIterator()
73 SmallSetIterator(SmallSetIterator &&Other) : IsSmall(Other.IsSmall) { in SmallSetIterator()
74 if (IsSmall) in SmallSetIterator()
85 if (!IsSmall)
88 IsSmall = Other.IsSmall;
[all …]
H A DSmallPtrSet.h71 bool IsSmall; variable
82 NumTombstones(0), IsSmall(true) { in SmallPtrSetImplBase()
237 bool isSmall() const { return IsSmall; } in isSmall()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSmallPtrSet.cpp137 IsSmall = false; in Grow()
142 IsSmall = that.isSmall(); in SmallPtrSetImplBase()
143 if (IsSmall) { in SmallPtrSetImplBase()
175 IsSmall = true; in copyFrom()
185 IsSmall = false; in copyFrom()
230 IsSmall = RHS.IsSmall; in moveHelper()
236 RHS.IsSmall = true; in moveHelper()
263 RHS.IsSmall = false; in swap()
265 this->IsSmall = true; in swap()
278 this->IsSmall = false; in swap()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp217 bool IsSmall = isSmallDataSection(GVar->getSection()); in isGlobalInSmallSection() local
218 LLVM_DEBUG(dbgs() << (IsSmall ? "yes" : "no") in isGlobalInSmallSection()
220 return IsSmall; in isGlobalInSmallSection()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2436 SDValue IsSmall =DAG.getSetCC(SL, SetCCVT, AbsA, in LowerFROUND32() local
2439 return DAG.getNode(ISD::SELECT, SL, VT, IsSmall, RoundedAForSmallA, RoundedA); in LowerFROUND32()
2462 SDValue IsSmall =DAG.getSetCC(SL, SetCCVT, AbsA, in LowerFROUND64() local
2464 RoundedA = DAG.getNode(ISD::SELECT, SL, VT, IsSmall, in LowerFROUND64()