/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_pair_regalloc.c | 66 unsigned int NumInputs; member 259 if (input >= s->NumInputs) in alloc_input_simple() 278 s->Temporary[i].Index = i + s->NumInputs; in do_regalloc_inputs_only() 559 for (i = 0; i < s->NumInputs; i++) { in do_advanced_regalloc() 570 node_count + s->NumInputs); in do_advanced_regalloc() 600 for (i = 0, input_node = 0; i< s->NumInputs; i++) { in do_advanced_regalloc() 760 s.NumInputs = rc_get_max_index(cc, RC_FILE_INPUT) + 1; in rc_pair_regalloc() 762 s.NumInputs * sizeof(struct register_info)); in rc_pair_regalloc() 763 memset(s.Input, 0, s.NumInputs * sizeof(struct register_info)); in rc_pair_regalloc()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | InlineAsm.cpp | 261 unsigned NumOutputs = 0, NumInputs = 0, NumClobbers = 0; in Verify() local 267 if ((NumInputs-NumIndirect) != 0 || NumClobbers != 0) in Verify() 277 ++NumInputs; in Verify() 299 if (Ty->getNumParams() != NumInputs) return false; in Verify()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | SmallVector.h | 393 size_type NumInputs = std::distance(in_start, in_end); in append() local 395 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append() 396 this->grow(this->size()+NumInputs); in append() 400 this->setEnd(this->end() + NumInputs); in append() 404 void append(size_type NumInputs, const T &Elt) { in append() argument 406 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append() 407 this->grow(this->size()+NumInputs); in append() 410 std::uninitialized_fill_n(this->end(), NumInputs, Elt); in append() 411 this->setEnd(this->end() + NumInputs); in append()
|
H A D | SmallString.h | 79 void append(size_t NumInputs, char Elt) { in append() argument 80 SmallVectorImpl<char>::append(NumInputs, Elt); in append()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | SmallVector.h | 388 size_type NumInputs = std::distance(in_start, in_end); in append() local 389 if (NumInputs > this->capacity() - this->size()) in append() 390 this->grow(this->size()+NumInputs); in append() 393 this->set_size(this->size() + NumInputs); in append() 396 /// Append \p NumInputs copies of \p Elt to the end. 397 void append(size_type NumInputs, const T &Elt) { in append() argument 398 if (NumInputs > this->capacity() - this->size()) in append() 399 this->grow(this->size()+NumInputs); in append() 401 std::uninitialized_fill_n(this->end(), NumInputs, Elt); in append() 402 this->set_size(this->size() + NumInputs); in append() [all...] |
H A D | SmallString.h | 78 void append(size_t NumInputs, char Elt) { in append() argument 79 SmallVectorImpl<char>::append(NumInputs, Elt); in append()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUMachineCFGStructurizer.cpp | 1357 unsigned NumInputs = getPHINumInputs(PHI); 1358 for (unsigned i = 0; i < NumInputs; ++i) { 1369 unsigned NumInputs = getPHINumInputs(PHI); 1370 for (unsigned i = 0; i < NumInputs; ++i) { 1381 unsigned NumInputs = getPHINumInputs(PHI); 1382 for (unsigned i = 0; i < NumInputs; ++i) { 1398 unsigned NumInputs = getPHINumInputs(PHI); 1399 for (unsigned i = 0; i < NumInputs; ++i) { 1464 unsigned NumInputs = getPHINumInputs(PHI); 1466 for (unsigned i = 0; i < NumInputs; [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | HotColdSplitting.cpp | 241 unsigned NumInputs, unsigned NumOutputs) { in getOutliningPenalty() 252 LLVM_DEBUG(dbgs() << "Applying penalty for: " << NumInputs << " inputs\n"); in getOutliningPenalty() 254 Penalty += CostForArgMaterialization * NumInputs; in getOutliningPenalty() 240 getOutliningPenalty(ArrayRef<BasicBlock *> Region, unsigned NumInputs, unsigned NumOutputs) getOutliningPenalty() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/MCParser/ |
H A D | MCAsmParser.h | 174 unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool>> &OpDecls,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
H A D | AsmParser.cpp | 240 unsigned &NumOutputs, unsigned &NumInputs, 5762 unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool>> &OpDecls, in parseMSInlineAsm() 5863 NumInputs = InputDecls.size(); in parseMSInlineAsm() 5876 if (NumOutputs || NumInputs) { in parseMSInlineAsm() 5877 unsigned NumExprs = NumOutputs + NumInputs; in parseMSInlineAsm() 5884 for (unsigned i = 0, j = NumOutputs; i < NumInputs; ++i, ++j) { in parseMSInlineAsm() 5760 parseMSInlineAsm( void *AsmLoc, std::string &AsmString, unsigned &NumOutputs, unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool>> &OpDecls, SmallVectorImpl<std::string> &Constraints, SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII, const MCInstPrinter *IP, MCAsmParserSemaCallback &SI) parseMSInlineAsm() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | [all...] |