Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSmallBitVector.h95 assert(!isSmall()); in getPointer()
107 assert(!isSmall() && "Tried to use an unaligned pointer"); in switchToLarge()
113 assert(isSmall()); in getSmallRawBits()
118 assert(isSmall()); in setSmallRawBits()
154 if (RHS.isSmall()) in SmallBitVector()
165 if (!isSmall()) in ~SmallBitVector()
184 bool isSmall() const { return X & uintptr_t(1); } in isSmall() function in llvm::SmallBitVector
188 return isSmall() ? getSmallSize() == 0 : getPointer()->empty(); in empty()
193 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
198 if (isSmall()) { in count()
[all...]
H A DSmallSet.h42 /// depending on isSmall.
48 bool isSmall; member in llvm::SmallSetIterator
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()
236 bool isSmall() const { return Set.empty(); } isSmall() function in llvm::SmallSet
[all...]
H A DSmallPtrSet.h82 if (!isSmall()) in ~SmallPtrSetImplBase()
98 if (!isSmall()) { in clear()
119 return isSmall() ? CurArray + NumNonEmpty : CurArray + CurArraySize; in EndPointer()
126 if (isSmall()) { in insert_imp()
177 if (isSmall()) { in find_imp()
194 bool isSmall() const { return CurArray == SmallArray; } in isSmall() function in llvm::SmallPtrSetImplBase
H A DSmallVector.h103 bool isSmall() const { return BeginX == getFirstEl(); } in isSmall() function in llvm::SmallVectorTemplateCommon
249 if (!this->isSmall()) in grow()
335 if (!this->isSmall()) in ~SmallVectorImpl()
672 if (!this->isSmall() && !RHS.isSmall()) { in swap()
760 if (!RHS.isSmall()) { in operator =()
762 if (!this->isSmall()) free(this->begin()); in operator =()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DSmallPtrSet.cpp25 assert(!isSmall() && "Can't shrink a small set!"); in shrink_and_clear()
97 bool WasSmall = isSmall();
126 if (that.isSmall()) {
147 if (isSmall() && RHS.isSmall())
152 if (RHS.isSmall()) {
153 if (!isSmall())
158 if (isSmall())
183 if (!isSmall())
192 if (RHS.isSmall()) {
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DSmallPtrSet.cpp25 assert(!isSmall() && "Can't shrink a small set!"); in shrink_and_clear()
65 if (isSmall()) {
121 bool WasSmall = isSmall();
148 if (that.isSmall()) {
170 if (isSmall() && RHS.isSmall())
175 if (RHS.isSmall()) {
176 if (!isSmall())
181 if (isSmall())
209 if (!isSmall())
[all...]
/third_party/skia/bench/
H A DDisplacementBench.cpp34 const int w = this->isSmall() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE; in makeBitmap()
35 const int h = this->isSmall() ? FILTER_HEIGHT_SMALL : FILTER_HEIGHT_LARGE; in makeBitmap()
47 const int w = this->isSmall() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE; in makeCheckerboard()
48 const int h = this->isSmall() ? FILTER_HEIGHT_SMALL : FILTER_HEIGHT_LARGE; in makeCheckerboard()
78 inline bool isSmall() const { return fIsSmall; } in isSmall() function in DisplacementBaseBench
94 return this->isSmall() ? "displacement_zero_small" : "displacement_zero_large";
119 return isSmall() ? "displacement_alpha_small" : "displacement_alpha_large";
143 return isSmall() ? "displacement_full_small" : "displacement_full_large";
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DSmallSet.h60 return isSmall() ? Vector.size() : Set.size(); in size()
65 if (isSmall()) { in count()
81 if (!isSmall()) in insert()
108 if (!isSmall()) in erase()
124 bool isSmall() const { return Set.empty(); } in isSmall() function in llvm::SmallSet
H A DSmallPtrSet.h89 if (!isSmall()) in ~SmallPtrSetImplBase()
104 if (!isSmall()) { in clear()
125 return isSmall() ? CurArray + NumNonEmpty : CurArray + CurArraySize; in EndPointer()
132 if (isSmall()) { in insert_imp()
168 if (isSmall()) { in count_imp()
182 bool isSmall() const { return CurArray == SmallArray; } in isSmall() function in llvm::SmallPtrSetImplBase
H A DSmallVector.h87 bool isSmall() const { in isSmall() function in llvm::SmallVectorTemplateCommon
249 if (!this->isSmall()) in grow()
343 if (!this->isSmall()) in ~SmallVectorImpl()
679 if (!this->isSmall() && !RHS.isSmall()) { in swap()
767 if (!RHS.isSmall()) { in operator =()
769 if (!this->isSmall()) free(this->begin()); in operator =()

Completed in 8 milliseconds