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

  /external/llvm/lib/IR/
InlineAsm.cpp 244 unsigned NumOutputs = 0, NumInputs = 0, NumClobbers = 0;
250 if ((NumInputs-NumIndirect) != 0 || NumClobbers != 0)
260 ++NumInputs;
282 if (Ty->getNumParams() != NumInputs) return false;
  /external/clang/include/clang/AST/
ASTVector.h 181 size_type NumInputs = std::distance(in_start, in_end);
183 if (NumInputs == 0)
187 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
188 this->grow(C, this->size()+NumInputs);
194 this->setEnd(this->end() + NumInputs);
199 void append(const ASTContext &C, size_type NumInputs, const T &Elt) {
201 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
202 this->grow(C, this->size()+NumInputs);
205 std::uninitialized_fill_n(this->end(), NumInputs, Elt);
206 this->setEnd(this->end() + NumInputs);
    [all...]
Stmt.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 64 unsigned int NumInputs;
208 if (input >= s->NumInputs)
227 s->Temporary[i].Index = i + s->NumInputs;
558 s->NumInputs * sizeof(unsigned int));
614 for (i = 0; i < s->NumInputs; i++) {
634 graph = ra_alloc_interference_graph(regs, node_count + s->NumInputs);
662 for (i = 0, input_node = 0; i< s->NumInputs; i++) {
726 s.NumInputs = rc_get_max_index(cc, RC_FILE_INPUT) + 1;
728 s.NumInputs * sizeof(struct register_info));
729 memset(s.Input, 0, s.NumInputs * sizeof(struct register_info))
    [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 418 size_type NumInputs = std::distance(in_start, in_end);
420 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
421 this->grow(this->size()+NumInputs);
427 this->setEnd(this->end() + NumInputs);
432 void append(size_type NumInputs, const T &Elt) {
434 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
435 this->grow(this->size()+NumInputs);
438 std::uninitialized_fill_n(this->end(), NumInputs, Elt);
439 this->setEnd(this->end() + NumInputs);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 64 unsigned int NumInputs;
208 if (input >= s->NumInputs)
227 s->Temporary[i].Index = i + s->NumInputs;
558 s->NumInputs * sizeof(unsigned int));
614 for (i = 0; i < s->NumInputs; i++) {
634 graph = ra_alloc_interference_graph(regs, node_count + s->NumInputs);
662 for (i = 0, input_node = 0; i< s->NumInputs; i++) {
726 s.NumInputs = rc_get_max_index(cc, RC_FILE_INPUT) + 1;
728 s.NumInputs * sizeof(struct register_info));
729 memset(s.Input, 0, s.NumInputs * sizeof(struct register_info))
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 492 size_t NumInputs = Function->arg_size();
497 --NumInputs;
501 --NumInputs;
525 --NumInputs;
544 if (NumInputs == 1) {
578 } else if (NumInputs > 1) {
587 for (size_t InputIndex = 0; InputIndex < NumInputs;
666 if (NumInputs > 0) {
669 for (size_t Index = 0; Index < NumInputs; ++Index) {
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 302 S->NumInputs = Record[Idx++];
315 unsigned NumInputs = S->getNumInputs();
322 for (unsigned I = 0, N = NumOutputs + NumInputs; I != N; ++I) {
335 Exprs.data(), NumOutputs, NumInputs,
367 unsigned NumOperands = S->NumOutputs + S->NumInputs;
    [all...]
ASTReader.cpp     [all...]

Completed in 155 milliseconds