OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
...]
/external/llvm/include/llvm/ADT/
SmallVector.h
350
size_type
NumInputs
= std::distance(in_start, in_end);
352
if (
NumInputs
> size_type(this->capacity_ptr()-this->end()))
353
this->grow(this->size()+
NumInputs
);
359
this->setEnd(this->end() +
NumInputs
);
364
void append(size_type
NumInputs
, const T &Elt) {
366
if (
NumInputs
> size_type(this->capacity_ptr()-this->end()))
367
this->grow(this->size()+
NumInputs
);
370
std::uninitialized_fill_n(this->end(),
NumInputs
, Elt);
371
this->setEnd(this->end() +
NumInputs
);
/external/clang/lib/Parse/
ParseStmt.cpp
[
all
...]
/external/clang/lib/Serialization/
ASTReaderStmt.cpp
257
unsigned
NumInputs
= Record[Idx++];
271
for (unsigned I = 0, N = NumOutputs +
NumInputs
; I != N; ++I) {
284
Exprs.data(), NumOutputs,
NumInputs
,
[
all
...]
Completed in 303 milliseconds