Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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 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.h146 bool isSmall() const { return this->BeginX == getFirstEl(); } in isSmall() function
467 if (!this->isSmall()) in takeAllocationForGrow()
596 if (!this->isSmall()) in assignRemote()
610 if (!this->isSmall()) in ~SmallVectorImpl()
976 if (!this->isSmall() && !RHS.isSmall()) { in swap()
1061 if (!RHS.isSmall()) {
/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp440 bool ExprEngine::isSmall(AnalysisDeclContext *ADC) const { in isSmall() function in ExprEngine
480 if (!isSmall(CalleeADC)) in examineStackFrames()
512 isSmall(AMgr.getAnalysisDeclContext(D))); in REGISTER_MAP_WITH_PROGRAMSTATE()
1127 (!isSmall(CalleeADC) || IsRecursive)) in shouldInlineCall()
1138 if (HowToInline == Inline_Minimal && (!isSmall(CalleeADC) || IsRecursive)) in shouldInlineCall()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h810 bool isSmall(AnalysisDeclContext *ADC) const;