Lines Matching refs:NumExprs
338 unsigned NumExprs = NumOutputs + NumInputs; in setOutputsAndInputsAndClobbers() local
341 this->Names = new (C) IdentifierInfo*[NumExprs]; in setOutputsAndInputsAndClobbers()
342 std::copy(Names, Names + NumExprs, this->Names); in setOutputsAndInputsAndClobbers()
345 this->Exprs = new (C) Stmt*[NumExprs]; in setOutputsAndInputsAndClobbers()
346 std::copy(Exprs, Exprs + NumExprs, this->Exprs); in setOutputsAndInputsAndClobbers()
349 this->Constraints = new (C) StringLiteral*[NumExprs]; in setOutputsAndInputsAndClobbers()
350 std::copy(Constraints, Constraints + NumExprs, this->Constraints); in setOutputsAndInputsAndClobbers()
538 unsigned NumExprs = NumOutputs +NumInputs; in AsmStmt() local
540 Names = new (C) IdentifierInfo*[NumExprs]; in AsmStmt()
541 std::copy(names, names + NumExprs, Names); in AsmStmt()
543 Exprs = new (C) Stmt*[NumExprs]; in AsmStmt()
544 std::copy(exprs, exprs + NumExprs, Exprs); in AsmStmt()
546 Constraints = new (C) StringLiteral*[NumExprs]; in AsmStmt()
547 std::copy(constraints, constraints + NumExprs, Constraints); in AsmStmt()