/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SpirvShaderControlFlow.cpp | 139 auto &blockId = it.first; in AssignBlockFields() local 141 if(reachable.count(blockId) > 0) in AssignBlockFields() 146 …ASSERT_MSG(outIt != blocks.end(), "Block %d has a non-existent out %d", blockId.value(), outId.val… in AssignBlockFields() 148 out.ins.emplace(blockId); in AssignBlockFields() 153 …ASSERT_MSG(mergeIt != blocks.end(), "Loop block %d has a non-existent merge block %d", blockId.val… in AssignBlockFields() 160 void SpirvShader::Function::ForeachBlockDependency(Block::ID blockId, std::function<void(Block::ID)… in ForeachBlockDependency() argument 162 auto block = getBlock(blockId); in ForeachBlockDependency() 166 !ExistsPath(blockId, dep, block.mergeBlock)) // or a loop and not a loop back edge in ForeachBlockDependency() 290 auto blockId = state->block; in EmitNonLoop() local 291 auto block = function.getBlock(blockId); in EmitNonLoop() [all …]
|
D | SpirvShader.hpp | 441 void ForeachBlockDependency(Block::ID blockId, std::function<void(Block::ID)> f) const;
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.h | 74 …Uniform(const TType& type, const std::string &name, int registerIndex, int blockId, const BlockMem… 76 int blockId; member 85 TLayoutBlockStorage layout, bool isRowMajorLayout, int registerIndex, int blockId); 96 int blockId; member 317 …pe &type, const TString &name, int registerIndex, bool samplersOnly, int blockId = -1, BlockLayout…
|
D | OutputASM.cpp | 278 …Uniform::Uniform(const TType& type, const std::string &name, int registerIndex, int blockId, const… in Uniform() argument 279 ShaderVariable(type, name, registerIndex), blockId(blockId), blockInfo(blockMemberInfo) in Uniform() 284 … TLayoutBlockStorage layout, bool isRowMajorLayout, int registerIndex, int blockId) : in UniformBlock() argument 286 isRowMajorLayout(isRowMajorLayout), registerIndex(registerIndex), blockId(blockId) in UniformBlock() 2318 return it->blockId; in getBlockId() 2332 int blockId = getBlockId(arg); in getArgumentInfo() local 2334 if(blockId != -1) in getArgumentInfo() 2337 for(int i = 0; i < blockId; ++i) in getArgumentInfo() 2343 const BlockDefinitionIndexMap& blockDefinition = blockDefinitions[blockId]; in getArgumentInfo() 3703 …pe &type, const TString &name, int registerIndex, bool samplersOnly, int blockId, BlockLayoutEncod… in declareUniform() argument [all …]
|
/third_party/jsframework/runtime/main/model/ |
D | domHelper.ts | 65 const blockId = lastestBlockId++; constant 66 const newBlock: FragBlockInterface = {start, end, blockId}; constant
|
D | compiler.ts | 69 blockId: number; property 901 differ.append(type, fragBlock.blockId.toString(), () => { 947 return newNode.blockId !== undefined;
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | merge_return_pass.cpp | 129 auto blockId = block->GetLabelInst()->result_id(); in ProcessStructured() local 130 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured() 149 auto blockId = block->id(); in ProcessStructured() local 150 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured()
|
/third_party/spirv-tools/source/opt/ |
D | merge_return_pass.cpp | 127 auto blockId = block->GetLabelInst()->result_id(); in ProcessStructured() local 128 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured() 147 auto blockId = block->id(); in ProcessStructured() local 148 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | merge_return_pass.cpp | 129 auto blockId = block->GetLabelInst()->result_id(); in ProcessStructured() local 130 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured() 149 auto blockId = block->id(); in ProcessStructured() local 150 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
D | Program.cpp | 489 for(unsigned int blockId = 0; blockId < MAX_UNIFORM_BUFFER_BINDINGS; blockId++) in resetUniformBlockBindings() local 491 uniformBlockBindings[blockId] = 0; in resetUniformBlockBindings() 1718 if(uniform.blockId >= 0) in linkUniforms() 1721 ASSERT(static_cast<size_t>(uniform.blockId) < activeUniformBlocks.size()); in linkUniforms() 1722 const std::string &uniformBlockName = activeUniformBlocks[uniform.blockId].name; in linkUniforms() 1726 if(activeUniformBlocks[uniform.blockId].dataSize > MAX_UNIFORM_BLOCK_SIZE) in linkUniforms()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/ |
D | UCharacter.java | 2277 for (int blockId = 0; blockId < COUNT; ++blockId) { 2278 if (BLOCKS_[blockId] == null) { 2280 "UnicodeBlock.BLOCKS_[" + blockId + "] not initialized");
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | UCharacter.java | 2627 for (int blockId = 0; blockId < COUNT; ++blockId) { 2628 if (BLOCKS_[blockId] == null) { 2630 "UnicodeBlock.BLOCKS_[" + blockId + "] not initialized");
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | BuildSPIRV.cpp | 1555 for (spirv::IdRef &blockId : conditional.blockIds) in startConditional() 1557 blockId = getNewId({}); in startConditional() 1573 const spirv::IdRef blockId = conditional.blockIds[conditional.nextBlockToWrite++]; in nextConditionalBlock() local 1580 mSpirvCurrentFunctionBlocks.back().labelId = blockId; in nextConditionalBlock()
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLCompiler.cpp | 397 void Compiler::scanCFG(CFG* cfg, BlockId blockId, std::set<BlockId>* workList) { in scanCFG() argument 398 BasicBlock& block = cfg->fBlocks[blockId]; in scanCFG() 408 if (exitId == blockId) { in scanCFG()
|