HomeSort by relevance Sort by last modified time
    Searched refs:NumClobbers (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/VMCore/
InlineAsm.cpp 253 unsigned NumOutputs = 0, NumInputs = 0, NumClobbers = 0;
259 if ((NumInputs-NumIndirect) != 0 || NumClobbers != 0)
268 if (NumClobbers) return false; // inputs before clobbers.
272 ++NumClobbers;
  /external/clang/lib/AST/
Stmt.cpp 333 unsigned NumClobbers) {
336 this->NumClobbers = NumClobbers;
353 this->Clobbers = new (C) StringLiteral*[NumClobbers];
354 std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers);
532 Expr **exprs, StringLiteral *asmstr, unsigned numclobbers,
536 , NumOutputs(numoutputs), NumInputs(numinputs), NumClobbers(numclobbers) {
549 Clobbers = new (C) StringLiteral*[NumClobbers];
550 std::copy(clobbers, clobbers + NumClobbers, Clobbers)
    [all...]
  /external/clang/include/clang/AST/
Stmt.h     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 290 unsigned NumClobbers = Record[Idx++];
311 for (unsigned I = 0; I != NumClobbers; ++I)
317 Clobbers.data(), NumClobbers);
    [all...]

Completed in 151 milliseconds