OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
253
unsigned
NumClobbers
) {
256
this->
NumClobbers
=
NumClobbers
;
273
this->Clobbers = new (C) StringLiteral*[
NumClobbers
];
274
std::copy(Clobbers, Clobbers +
NumClobbers
, this->Clobbers);
452
Expr **exprs, StringLiteral *asmstr, unsigned
numclobbers
,
456
, NumOutputs(numoutputs), NumInputs(numinputs),
NumClobbers
(
numclobbers
) {
469
Clobbers = new (C) StringLiteral*[
NumClobbers
];
470
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
258
unsigned
NumClobbers
= Record[Idx++];
279
for (unsigned I = 0; I !=
NumClobbers
; ++I)
285
Clobbers.data(),
NumClobbers
);
[
all
...]
Completed in 676 milliseconds