Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h96 assert(!isSmall()); in getPointer()
108 assert(!isSmall() && "Tried to use an unaligned pointer"); in switchToLarge()
114 assert(isSmall()); in getSmallRawBits()
119 assert(isSmall()); in setSmallRawBits()
157 if (RHS.isSmall()) in SmallBitVector()
168 if (!isSmall()) in ~SmallBitVector()
187 bool isSmall() const { return X & uintptr_t(1); } in isSmall() function
191 return isSmall() ? getSmallSize() == 0 : getPointer()->empty(); in empty()
196 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
201 if (isSmall()) { in count()
[all …]
H A DSmallSet.h49 bool isSmall; variable
52 SmallSetIterator(SetIterTy SetIter) : SetIter(SetIter), isSmall(false) {} in SmallSetIterator()
54 SmallSetIterator(VecIterTy VecIter) : VecIter(VecIter), isSmall(true) {} in SmallSetIterator()
59 if (isSmall) in ~SmallSetIterator()
65 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) { in SmallSetIterator()
66 if (isSmall) in SmallSetIterator()
74 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) { in SmallSetIterator()
75 if (isSmall) in SmallSetIterator()
86 if (!isSmall)
89 isSmall = Other.isSmall;
[all …]
H A DDynamicAPInt.h58 if (LLVM_LIKELY(isSmall())) { in initLarge()
76 LLVM_ATTRIBUTE_ALWAYS_INLINE constexpr bool isSmall() const { in isSmall() function
80 return !isSmall(); in isLarge()
85 assert(isSmall() && in getSmall()
90 assert(isSmall() && in getSmall()
106 if (isSmall()) in SlowDynamicAPInt()
128 if (LLVM_LIKELY(O.isSmall())) {
140 if (isSmall()) in int64_t()
251 if (LLVM_LIKELY(isSmall() && O.isSmall()))
257 if (LLVM_LIKELY(isSmall() && O.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.h84 if (!isSmall()) in ~SmallPtrSetImplBase()
100 if (!isSmall()) { in clear()
121 return isSmall() ? CurArray + NumNonEmpty : CurArray + CurArraySize; in EndPointer()
128 if (isSmall()) { in insert_imp()
153 if (isSmall()) { in erase_imp()
181 if (isSmall()) { in find_imp()
197 bool isSmall() const { return CurArray == SmallArray; } in isSmall() function
380 if (isSmall()) { in remove_if()
H A DSmallVector.h157 bool isSmall() const { return this->BeginX == getFirstEl(); } in isSmall() function
478 if (!this->isSmall()) in takeAllocationForGrow()
606 if (!this->isSmall()) in assignRemote()
617 if (!this->isSmall()) in ~SmallVectorImpl()
986 if (!this->isSmall() && !RHS.isSmall()) { in swap()
1071 if (!RHS.isSmall()) {
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSmallPtrSet.cpp25 assert(!isSmall() && "Can't shrink a small set!"); in shrink_and_clear()
97 bool WasSmall = isSmall(); in Grow()
126 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()
[all …]
H A DDynamicAPInt.cpp16 if (X.isSmall()) in hash_value()
30 if (isSmall()) in print()
/freebsd/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()
1126 (!isSmall(CalleeADC) || IsRecursive)) in shouldInlineCall()
1137 if (HowToInline == Inline_Minimal && (!isSmall(CalleeADC) || IsRecursive)) in shouldInlineCall()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h786 bool isSmall(AnalysisDeclContext *ADC) const;