HomeSort by: relevance | last modified time | path
    Searched refs:isSmall (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
SmallSet.h 42 /// depending on isSmall.
48 bool isSmall;
51 SmallSetIterator(SetIterTy SetIter) : SetIter(SetIter), isSmall(false) {}
53 SmallSetIterator(VecIterTy VecIter) : VecIter(VecIter), isSmall(true) {}
58 if (isSmall)
64 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) {
65 if (isSmall)
73 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) {
    [all...]
SmallBitVector.h 95 assert(!isSmall());
107 assert(!isSmall() && "Tried to use an unaligned pointer");
113 assert(isSmall());
118 assert(isSmall());
154 if (RHS.isSmall())
165 if (!isSmall())
184 bool isSmall() const { return X & uintptr_t(1); }
188 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
193 return isSmall() ? getSmallSize() : getPointer()->size();
198 if (isSmall()) {
    [all...]
SmallPtrSet.h 82 if (!isSmall())
98 if (!isSmall()) {
119 return isSmall() ? CurArray + NumNonEmpty : CurArray + CurArraySize;
126 if (isSmall()) {
177 if (isSmall()) {
194 bool isSmall() const { return CurArray == SmallArray; }
SmallVector.h 129 bool isSmall() const { return this->BeginX == getFirstEl(); }
447 if (!this->isSmall())
581 if (!this->isSmall())
940 if (!this->isSmall() && !RHS.isSmall()) {
1025 if (!RHS.isSmall()) {
1027 if (!this->isSmall()) free(this->begin());
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SmallPtrSet.cpp 25 assert(!isSmall() && "Can't shrink a small set!");
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...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 368 bool ExprEngine::isSmall(AnalysisDeclContext *ADC) const {
408 if (!isSmall(CalleeADC))
1016 (!isSmall(CalleeADC) || IsRecursive))
1027 if (HowToInline == Inline_Minimal && (!isSmall(CalleeADC) || IsRecursive))
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 794 bool isSmall(AnalysisDeclContext *ADC) const;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/uni/
package.d 8146 @property bool isSmall() const { return idx == uint.max; }
8163 if (isSmall)
8173 if (isSmall)
8182 if (isSmall)
8191 if (isSmall)

Completed in 32 milliseconds