/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/ |
D | StoreTile.h | 74 template <size_t PixelSize, size_t NumDests> 77 static void Store(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) = delete; 345 template <size_t NumDests> 346 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) 362 StorePixels<FormatTraits<DstFormat>::bpp, NumDests>::Store(aosTile, ppDsts); 378 template <size_t NumDests> 379 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) 389 StorePixels<FormatTraits<Format>::bpp, NumDests>::Store(aosTile, ppDsts); 404 template <size_t NumDests> 405 INLINE static void Convert(const uint8_t* pSrc, uint8_t* (&ppDsts)[NumDests]) [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SwitchLoweringUtils.cpp | 223 unsigned NumDests = JTProbs.size(); in buildJumpTable() local 224 if (TLI->isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable() 376 unsigned NumDests = Dests.count(); in buildBitTests() local 382 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL)) in buildBitTests()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | SwitchLoweringUtils.cpp | 226 unsigned NumDests = JTProbs.size(); in buildJumpTable() local 227 if (TLI->isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable() 379 unsigned NumDests = Dests.count(); in buildBitTests() local 385 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL)) in buildBitTests()
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 3299 void init(Value *Address, unsigned NumDests); 3309 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 3315 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 3323 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3325 return new IndirectBrInst(Address, NumDests, InsertBefore); 3327 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3329 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
D | IRBuilder.h | 697 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 698 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | Instructions.h | 3572 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 3578 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 3585 void init(Value *Address, unsigned NumDests); 3622 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3624 return new IndirectBrInst(Address, NumDests, InsertBefore); 3627 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3629 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
D | IRBuilder.h | 1016 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 1017 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Instructions.h | 3538 IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore); 3544 IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd); 3551 void init(Value *Address, unsigned NumDests); 3588 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3590 return new IndirectBrInst(Address, NumDests, InsertBefore); 3593 static IndirectBrInst *Create(Value *Address, unsigned NumDests, 3595 return new IndirectBrInst(Address, NumDests, InsertAtEnd);
|
D | IRBuilder.h | 1010 IndirectBrInst *CreateIndirectBr(Value *Addr, unsigned NumDests = 10) { 1011 return Insert(IndirectBrInst::Create(Addr, NumDests));
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetLowering.h | 1026 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, in isSuitableForBitTests() argument 1044 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 1045 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | TargetLowering.h | 1178 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps, in isSuitableForBitTests() argument 1196 return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 1197 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 326 bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps,
|
D | SelectionDAGBuilder.cpp | 8278 unsigned NumDests = JTProbs.size(); in buildJumpTable() local 8279 if (isSuitableForBitTests(NumDests, NumCmps, in buildJumpTable() 8441 bool SelectionDAGBuilder::isSuitableForBitTests(unsigned NumDests, in isSuitableForBitTests() argument 8459 return (NumDests == 1 && NumCmps >= 3) || in isSuitableForBitTests() 8460 (NumDests == 2 && NumCmps >= 5) || in isSuitableForBitTests() 8461 (NumDests == 3 && NumCmps >= 6); in isSuitableForBitTests() 8479 unsigned NumDests = Dests.count(); in buildBitTests() local 8485 if (!isSuitableForBitTests(NumDests, NumCmps, Low, High)) in buildBitTests()
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 2702 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local 2703 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs() 2731 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests), in FindPatternInputsAndOutputs()
|
/external/llvm-project/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 3399 unsigned NumDests = Pat->getNumChildren()-1; in FindPatternInputsAndOutputs() local 3400 for (unsigned i = 0; i != NumDests; ++i) { in FindPatternInputsAndOutputs() 3434 FindPatternInputsAndOutputs(I, Pat->getChildShared(NumDests), InstInputs, in FindPatternInputsAndOutputs()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 2899 unsigned NumDests);
|
/external/llvm/lib/IR/ |
D | Core.cpp | 2469 unsigned NumDests) { in LLVMBuildIndirectBr() argument 2470 return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests)); in LLVMBuildIndirectBr()
|
D | Instructions.cpp | 3798 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 3801 ReservedSpace = 1+NumDests; in init()
|
/external/llvm-project/llvm/include/llvm-c/ |
D | Core.h | 3626 unsigned NumDests);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | Core.h | 3589 unsigned NumDests);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 4454 unsigned NumDests = Record.size()-2; in parseFunctionBody() local 4455 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody() 4457 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 5069 unsigned NumDests = Record.size()-2; in parseFunctionBody() local 5070 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody() 5072 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instructions.cpp | 4011 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 4014 ReservedSpace = 1+NumDests; in init()
|
/external/llvm-project/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 4556 unsigned NumDests = Record.size()-2; in parseFunctionBody() local 4557 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); in parseFunctionBody() 4559 for (unsigned i = 0, e = NumDests; i != e; ++i) { in parseFunctionBody()
|
/external/llvm-project/llvm/lib/IR/ |
D | Instructions.cpp | 4209 void IndirectBrInst::init(Value *Address, unsigned NumDests) { in init() argument 4212 ReservedSpace = 1+NumDests; in init()
|