Home
last modified time | relevance | path

Searched refs:isSmall (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h489 if (isSmall() && RHS.isSmall()) in anyCommon()
491 if (!isSmall() && !RHS.isSmall()) in anyCommon()
504 if (isSmall() && RHS.isSmall())
506 else if (!isSmall() && !RHS.isSmall())
525 if (isSmall() && RHS.isSmall())
527 else if (!isSmall() && !RHS.isSmall())
541 if (isSmall() && RHS.isSmall()) in reset()
555 if (isSmall() && RHS.isSmall()) in test()
557 if (!isSmall() && !RHS.isSmall()) in test()
574 if (isSmall() && RHS.isSmall())
[all …]
H A DSmallSet.h49 bool isSmall; variable
59 if (isSmall) in ~SmallSetIterator()
66 if (isSmall) in SmallSetIterator()
75 if (isSmall) in SmallSetIterator()
89 isSmall = Other.isSmall;
90 if (isSmall)
103 isSmall = Other.isSmall;
104 if (isSmall)
112 if (isSmall != RHS.isSmall)
114 if (isSmall)
[all …]
H A DSetVector.h164 if (isSmall()) { in insert()
190 if (isSmall()) { in remove()
214 if (isSmall()) in erase()
240 if (isSmall()) in remove_if()
256 if (isSmall()) in contains()
266 if (isSmall()) in count()
355 [[nodiscard]] bool isSmall() const { return set_.empty(); } in isSmall() function
H A DSmallPtrSet.h83 if (!isSmall()) in ~SmallPtrSetImplBase()
99 if (!isSmall()) { in clear()
120 return isSmall() ? CurArray + NumNonEmpty : CurArray + CurArraySize; in EndPointer()
127 if (isSmall()) { in insert_imp()
178 if (isSmall()) { in find_imp()
195 bool isSmall() const { return CurArray == SmallArray; } in isSmall() function
H A DSmallVector.h156 bool isSmall() const { return this->BeginX == getFirstEl(); } in isSmall() function
477 if (!this->isSmall()) in takeAllocationForGrow()
605 if (!this->isSmall()) in assignRemote()
616 if (!this->isSmall()) in ~SmallVectorImpl()
985 if (!this->isSmall() && !RHS.isSmall()) { in swap()
1070 if (!RHS.isSmall()) {
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DSmallPtrSet.cpp126 if (that.isSmall()) { in SmallPtrSetImplBase()
147 if (isSmall() && RHS.isSmall()) in CopyFrom()
152 if (RHS.isSmall()) { in CopyFrom()
153 if (!isSmall()) in CopyFrom()
158 if (isSmall()) in CopyFrom()
183 if (!isSmall()) in MoveFrom()
192 if (RHS.isSmall()) { in MoveHelper()
217 if (!this->isSmall() && !RHS.isSmall()) { in swap()
229 if (!this->isSmall() && RHS.isSmall()) { in swap()
242 if (this->isSmall() && !RHS.isSmall()) { in swap()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp438 bool ExprEngine::isSmall(AnalysisDeclContext *ADC) const { in isSmall() function in ExprEngine
478 if (!isSmall(CalleeADC)) in examineStackFrames()
510 isSmall(AMgr.getAnalysisDeclContext(D))); in REGISTER_MAP_WITH_PROGRAMSTATE()
1125 (!isSmall(CalleeADC) || IsRecursive)) in shouldInlineCall()
1136 if (HowToInline == Inline_Minimal && (!isSmall(CalleeADC) || IsRecursive)) in shouldInlineCall()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h794 bool isSmall(AnalysisDeclContext *ADC) const;