Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DSmallBitVector.h95 bool isSmall() const { in isSmall() function
100 assert(!isSmall()); in getPointer()
112 assert(!isSmall() && "Tried to use an unaligned pointer"); in switchToLarge()
118 assert(isSmall()); in getSmallRawBits()
123 assert(isSmall()); in setSmallRawBits()
159 if (RHS.isSmall()) in SmallBitVector()
170 if (!isSmall()) in ~SmallBitVector()
191 return isSmall() ? getSmallSize() == 0 : getPointer()->empty(); in empty()
196 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
201 if (isSmall()) { in count()
[all …]
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 …]
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
DSmallVector.h104 bool isSmall() const { return BeginX == getFirstEl(); } in isSmall() function
256 if (!this->isSmall()) in grow()
342 if (!this->isSmall()) in ~SmallVectorImpl()
682 if (!this->isSmall() && !RHS.isSmall()) { in swap()
770 if (!RHS.isSmall()) {
772 if (!this->isSmall()) free(this->begin());
/external/llvm/include/llvm/ADT/
DSmallBitVector.h87 bool isSmall() const { in isSmall() function
92 assert(!isSmall()); in getPointer()
104 assert(!isSmall() && "Tried to use an unaligned pointer"); in switchToLarge()
110 assert(isSmall()); in getSmallRawBits()
115 assert(isSmall()); in setSmallRawBits()
153 if (RHS.isSmall()) in SmallBitVector()
164 if (!isSmall()) in ~SmallBitVector()
170 return isSmall() ? getSmallSize() == 0 : getPointer()->empty(); in empty()
175 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
180 if (isSmall()) { in count()
[all …]
DSmallSet.h55 return isSmall() ? Vector.size() : Set.size(); in size()
60 if (isSmall()) { in count()
76 if (!isSmall()) in insert()
103 if (!isSmall()) in erase()
119 bool isSmall() const { return Set.empty(); } in isSmall() function
DSmallPtrSet.h81 if (!isSmall()) in ~SmallPtrSetImplBase()
93 if (!isSmall()) { in clear()
113 return isSmall() ? CurArray + NumNonEmpty : CurArray + CurArraySize; in EndPointer()
120 if (isSmall()) { in insert_imp()
156 if (isSmall()) { in count_imp()
170 bool isSmall() const { return CurArray == SmallArray; } in isSmall() function
DSmallVector.h86 bool isSmall() const { in isSmall() function
246 if (!this->isSmall()) in grow()
339 if (!this->isSmall()) in ~SmallVectorImpl()
677 if (!this->isSmall() && !RHS.isSmall()) { in swap()
765 if (!RHS.isSmall()) {
767 if (!this->isSmall()) free(this->begin());
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DSmallBitVector.h83 bool isSmall() const { in isSmall() function
88 assert(!isSmall()); in getPointer()
100 assert(!isSmall() && "Tried to use an unaligned pointer"); in switchToLarge()
106 assert(isSmall()); in getSmallRawBits()
111 assert(isSmall()); in setSmallRawBits()
149 if (RHS.isSmall()) in SmallBitVector()
156 if (!isSmall()) in ~SmallBitVector()
162 return isSmall() ? getSmallSize() == 0 : getPointer()->empty(); in empty()
167 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
172 if (isSmall()) { in count()
[all …]
DSmallSet.h44 return isSmall() ? Vector.size() : Set.size(); in size()
49 if (isSmall()) { in count()
59 if (!isSmall()) in insert()
86 if (!isSmall()) in erase()
101 bool isSmall() const { return Set.empty(); } in isSmall() function
DSmallPtrSet.h84 if (!isSmall() && NumElements*4 < CurArraySize && CurArraySize > 32) in clear()
113 if (isSmall()) { in count_imp()
127 bool isSmall() const { return CurArray == SmallArray; } in isSmall() function
DSmallVector.h77 bool isSmall() const { in isSmall() function
216 if (!this->isSmall()) in grow()
283 if (!this->isSmall()) in ~SmallVectorImpl()
571 if (!this->isSmall() && !RHS.isSmall()) { in swap()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DSmallPtrSet.cpp25 assert(!isSmall() && "Can't shrink a small set!"); in shrink_and_clear()
65 if (isSmall()) { in erase_imp()
121 bool WasSmall = isSmall(); in Grow()
148 if (that.isSmall()) { in SmallPtrSetImplBase()
170 if (isSmall() && RHS.isSmall()) in CopyFrom()
175 if (RHS.isSmall()) { in CopyFrom()
176 if (!isSmall()) in CopyFrom()
181 if (isSmall()) in CopyFrom()
209 if (!isSmall()) in MoveFrom()
218 if (RHS.isSmall()) { in MoveHelper()
[all …]
/external/llvm/lib/Support/
DSmallPtrSet.cpp24 assert(!isSmall() && "Can't shrink a small set!"); in shrink_and_clear()
64 if (isSmall()) { in erase_imp()
120 bool WasSmall = isSmall(); in Grow()
147 if (that.isSmall()) { in SmallPtrSetImplBase()
169 if (isSmall() && RHS.isSmall()) in CopyFrom()
174 if (RHS.isSmall()) { in CopyFrom()
175 if (!isSmall()) in CopyFrom()
180 if (isSmall()) in CopyFrom()
208 if (!isSmall()) in MoveFrom()
217 if (RHS.isSmall()) { in MoveHelper()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DSmallPtrSet.cpp26 assert(!isSmall() && "Can't shrink a small set!"); in shrink_and_clear()
98 bool WasSmall = isSmall(); in Grow()
127 if (that.isSmall()) { in SmallPtrSetImplBase()
148 if (isSmall() && RHS.isSmall()) in CopyFrom()
153 if (RHS.isSmall()) { in CopyFrom()
154 if (!isSmall()) in CopyFrom()
159 if (isSmall()) in CopyFrom()
184 if (!isSmall()) in MoveFrom()
193 if (RHS.isSmall()) { in MoveHelper()
218 if (!this->isSmall() && !RHS.isSmall()) { in swap()
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
DSmallPtrSet.cpp22 assert(!isSmall() && "Can't shrink a small set!"); in shrink_and_clear()
40 if (isSmall()) { in insert_imp()
77 if (isSmall()) { in erase_imp()
137 bool WasSmall = isSmall(); in Grow()
177 if (that.isSmall()) { in SmallPtrSetImpl()
198 if (isSmall() && RHS.isSmall()) in CopyFrom()
203 if (RHS.isSmall()) { in CopyFrom()
204 if (!isSmall()) in CopyFrom()
209 if (isSmall()) in CopyFrom()
227 if (!isSmall()) in ~SmallPtrSetImpl()
DSmallVector.cpp26 if (this->isSmall()) { in grow_pod()
/external/skia/bench/
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()
48 const int w = this->isSmall() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE; in makeCheckerboard()
49 const int h = this->isSmall() ? FILTER_HEIGHT_SMALL : FILTER_HEIGHT_LARGE; in makeCheckerboard()
81 inline bool isSmall() const { return fIsSmall; } in isSmall() function in DisplacementBaseBench
98 return this->isSmall() ? "displacement_zero_small" : "displacement_zero_large"; in onGetName()
125 return isSmall() ? "displacement_alpha_small" : "displacement_alpha_large"; in onGetName()
151 return isSmall() ? "displacement_full_small" : "displacement_full_large"; in onGetName()
DColorFilterBench.cpp51 return this->isSmall() ? SkRect::MakeWH(FILTER_WIDTH_SMALL, FILTER_HEIGHT_SMALL) : in getFilterRect()
55 inline bool isSmall() const { return fIsSmall; } in isSmall() function in ColorFilterBaseBench
70 return this->isSmall() ? "colorfilter_dim_bright_small" : "colorfilter_dim_bright_large"; in onGetName()
98 return this->isSmall() ? "colorfilter_bright_gray_small" : "colorfilter_bright_gray_large"; in onGetName()
123 return this->isSmall() ? "colorfilter_gray_bright_small" : "colorfilter_gray_bright_large"; in onGetName()
148 return this->isSmall() ? "colorfilter_blue_bright_small" : "colorfilter_blue_bright_large"; in onGetName()
173 return this->isSmall() ? "colorfilter_bright_blue_small" : "colorfilter_bright_blue_large"; in onGetName()
198 return this->isSmall() ? "colorfilter_bright_small" : "colorfilter_bright_large"; in onGetName()
222 return this->isSmall() ? "colorfilter_blue_small" : "colorfilter_blue_large"; in onGetName()
246 return this->isSmall() ? "colorfilter_gray_small" : "colorfilter_gray_large"; in onGetName()
/external/skqp/bench/
DDisplacementBench.cpp34 const int w = this->isSmall() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE; in makeBitmap()
35 const int h = this->isSmall() ? FILTER_HEIGHT_LARGE : FILTER_HEIGHT_LARGE; in makeBitmap()
48 const int w = this->isSmall() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE; in makeCheckerboard()
49 const int h = this->isSmall() ? FILTER_HEIGHT_LARGE : FILTER_HEIGHT_LARGE; in makeCheckerboard()
81 inline bool isSmall() const { return fIsSmall; } in isSmall() function in DisplacementBaseBench
98 return this->isSmall() ? "displacement_zero_small" : "displacement_zero_large"; in onGetName()
125 return isSmall() ? "displacement_alpha_small" : "displacement_alpha_large"; in onGetName()
151 return isSmall() ? "displacement_full_small" : "displacement_full_large"; in onGetName()
DColorFilterBench.cpp51 return this->isSmall() ? SkRect::MakeWH(FILTER_WIDTH_SMALL, FILTER_HEIGHT_SMALL) : in getFilterRect()
55 inline bool isSmall() const { return fIsSmall; } in isSmall() function in ColorFilterBaseBench
70 return this->isSmall() ? "colorfilter_dim_bright_small" : "colorfilter_dim_bright_large"; in onGetName()
98 return this->isSmall() ? "colorfilter_bright_gray_small" : "colorfilter_bright_gray_large"; in onGetName()
123 return this->isSmall() ? "colorfilter_gray_bright_small" : "colorfilter_gray_bright_large"; in onGetName()
148 return this->isSmall() ? "colorfilter_blue_bright_small" : "colorfilter_blue_bright_large"; in onGetName()
173 return this->isSmall() ? "colorfilter_bright_blue_small" : "colorfilter_bright_blue_large"; in onGetName()
198 return this->isSmall() ? "colorfilter_bright_small" : "colorfilter_bright_large"; in onGetName()
222 return this->isSmall() ? "colorfilter_blue_small" : "colorfilter_blue_large"; in onGetName()
246 return this->isSmall() ? "colorfilter_gray_small" : "colorfilter_gray_large"; in onGetName()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
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
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
DSmallVector.h87 bool isSmall() const { in isSmall() function
249 if (!this->isSmall()) in grow()
343 if (!this->isSmall()) in ~SmallVectorImpl()
679 if (!this->isSmall() && !RHS.isSmall()) { in swap()
767 if (!RHS.isSmall()) {
769 if (!this->isSmall()) free(this->begin());
/external/python/cpython2/Mac/Modules/app/
D_Appmodule.c1407 Boolean isSmall; in App_DrawThemeStandaloneGrowBox() local
1415 &isSmall, in App_DrawThemeStandaloneGrowBox()
1420 isSmall, in App_DrawThemeStandaloneGrowBox()
1434 Boolean isSmall; in App_DrawThemeStandaloneNoGrowBox() local
1442 &isSmall, in App_DrawThemeStandaloneNoGrowBox()
1447 isSmall, in App_DrawThemeStandaloneNoGrowBox()
1461 Boolean isSmall; in App_GetThemeStandaloneGrowBoxBounds() local
1469 &isSmall)) in App_GetThemeStandaloneGrowBoxBounds()
1473 isSmall, in App_GetThemeStandaloneGrowBoxBounds()

12