Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DSmallBitVector.h90 bool isSmall() const { in isSmall() function
95 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()
156 if (RHS.isSmall()) in SmallBitVector()
167 if (!isSmall()) in ~SmallBitVector()
173 return isSmall() ? getSmallSize() == 0 : getPointer()->empty(); in empty()
178 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
183 if (isSmall()) { in count()
[all …]
DSmallSet.h49 return isSmall() ? Vector.size() : Set.size(); in size()
54 if (isSmall()) { in count()
70 if (!isSmall()) in insert()
97 if (!isSmall()) in erase()
112 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.h86 bool isSmall() const { in isSmall() function
260 if (!this->isSmall()) in grow()
364 if (!this->isSmall()) in ~SmallVectorImpl()
695 if (!this->isSmall() && !RHS.isSmall()) { in swap()
783 if (!RHS.isSmall()) {
785 if (!this->isSmall()) free(this->begin());
/external/llvm/lib/Support/
DSmallPtrSet.cpp24 assert(!isSmall() && "Can't shrink a small set!"); in shrink_and_clear()
39 if (isSmall()) { in insert_imp()
78 if (isSmall()) { in erase_imp()
138 bool WasSmall = isSmall(); in Grow()
174 if (that.isSmall()) { in SmallPtrSetImplBase()
203 if (that.isSmall()) { in SmallPtrSetImplBase()
224 if (isSmall() && RHS.isSmall()) in CopyFrom()
229 if (RHS.isSmall()) { in CopyFrom()
230 if (!isSmall()) in CopyFrom()
235 if (isSmall()) in CopyFrom()
[all …]
/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_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()
79 inline bool isSmall() const { return fIsSmall; } in isSmall() function in DisplacementBaseBench
95 return this->isSmall() ? "displacement_zero_small" : "displacement_zero_large"; in onGetName()
122 return isSmall() ? "displacement_alpha_small" : "displacement_alpha_large"; in onGetName()
148 return isSmall() ? "displacement_full_small" : "displacement_full_large"; in onGetName()
DColorFilterBench.cpp27 return isSmall() ? SkRect::MakeWH(FILTER_WIDTH_SMALL, FILTER_HEIGHT_SMALL) : in getFilterRect()
58 inline bool isSmall() const { return fIsSmall; } in isSmall() function in ColorFilterBaseBench
74 return isSmall() ? "colorfilter_dim_bright_small" : "colorfilter_dim_bright_large"; in onGetName()
104 return isSmall() ? "colorfilter_bright_gray_small" : "colorfilter_bright_gray_large"; in onGetName()
131 return isSmall() ? "colorfilter_gray_bright_small" : "colorfilter_gray_bright_large"; in onGetName()
158 return isSmall() ? "colorfilter_blue_bright_small" : "colorfilter_blue_bright_large"; in onGetName()
185 return isSmall() ? "colorfilter_bright_blue_small" : "colorfilter_bright_blue_large"; in onGetName()
212 return isSmall() ? "colorfilter_bright_small" : "colorfilter_bright_large"; in onGetName()
238 return isSmall() ? "colorfilter_blue_small" : "colorfilter_blue_large"; in onGetName()
263 return isSmall() ? "colorfilter_gray_small" : "colorfilter_gray_large"; in onGetName()
/external/guava/guava/src/com/google/common/base/
DCharMatcher.java871 return isSmall(totalCharacters, table.length())
878 private static boolean isSmall(int totalCharacters, int tableLength) {