HomeSort by relevance Sort by last modified time
    Searched defs:NumInputs (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/VMCore/
InlineAsm.cpp 253 unsigned NumOutputs = 0, NumInputs = 0, NumClobbers = 0;
259 if ((NumInputs-NumIndirect) != 0 || NumClobbers != 0)
269 ++NumInputs;
291 if (Ty->getNumParams() != NumInputs) return false;
  /external/clang/include/clang/AST/
ASTVector.h 178 size_type NumInputs = std::distance(in_start, in_end);
180 if (NumInputs == 0)
184 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
185 this->grow(C, this->size()+NumInputs);
191 this->setEnd(this->end() + NumInputs);
196 void append(ASTContext &C, size_type NumInputs, const T &Elt) {
198 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
199 this->grow(C, this->size()+NumInputs);
202 std::uninitialized_fill_n(this->end(), NumInputs, Elt);
203 this->setEnd(this->end() + NumInputs);
    [all...]
Stmt.h     [all...]