/external/v8/tools/turbolizer/src/ |
D | text-view.ts | 95 const blockId = anyToString(anyBlockId); constant 96 if (!this.blockIdToHtmlElementsMap.has(blockId)) { 97 this.blockIdToHtmlElementsMap.set(blockId, []); 99 this.blockIdToHtmlElementsMap.get(blockId).push(htmlElement); 103 const blockId = anyToString(anyBlockId); constant 104 if (!this.blockIdtoNodeIds.has(blockId)) { 105 this.blockIdtoNodeIds.set(blockId, []); 107 this.blockIdtoNodeIds.get(blockId).push(anyToString(anyNodeId)); 108 this.nodeIdToBlockId[anyNodeId] = blockId; 114 const blockId = this.nodeIdToBlockId[nodeId]; constant [all …]
|
D | disassembly-view.ts | 37 const [nodes, blockId] = sourceResolver.nodesForPCOffset(offset) constant 77 blockId: function (text) { constant 86 const blockId = matches[0]; constant 92 view.blockSelectionHandler.select([blockId], true);
|
D | source-resolver.ts | 322 for (const [blockId, range] of Object.entries<[number, number]>(blockIdToInstructionRange)) { constant 323 this.blockIdToInstructionRange[blockId] = range; 333 getInstructionRangeForBlock(blockId):[number, number] { 334 const X = this.blockIdToInstructionRange[blockId]; constant
|
D | schedule-view.ts | 121 function mkBlockLinkHandler(blockId) { 127 view.blockSelectionHandler.select(["" + blockId], true);
|
/external/u-boot/fs/yaffs2/ |
D | yaffs_nandif.c | 139 int ynandif_MarkNANDBlockBad(struct yaffs_dev *dev, int blockId) in ynandif_MarkNANDBlockBad() argument 143 return geometry->markBlockBad(dev, blockId); in ynandif_MarkNANDBlockBad() 146 int ynandif_EraseBlockInNAND(struct yaffs_dev *dev, int blockId) in ynandif_EraseBlockInNAND() argument 150 return geometry->eraseBlock(dev, blockId); in ynandif_EraseBlockInNAND() 155 static int ynandif_IsBlockOk(struct yaffs_dev *dev, int blockId) in ynandif_IsBlockOk() argument 159 return geometry->checkBlockOk(dev, blockId); in ynandif_IsBlockOk() 162 int ynandif_QueryNANDBlock(struct yaffs_dev *dev, int blockId, in ynandif_QueryNANDBlock() argument 170 chunkNo = blockId * dev->param.chunks_per_block; in ynandif_QueryNANDBlock() 172 if (!ynandif_IsBlockOk(dev, blockId)) { in ynandif_QueryNANDBlock()
|
D | yaffs_nandif.h | 51 int (*eraseBlock)(struct yaffs_dev *dev, unsigned blockId); 53 int (*checkBlockOk)(struct yaffs_dev *dev, unsigned blockId); 54 int (*markBlockBad)(struct yaffs_dev *dev, unsigned blockId);
|
/external/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 315 …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() 2316 return it->blockId; in getBlockId() 2330 int blockId = getBlockId(arg); in getArgumentInfo() local 2332 if(blockId != -1) in getArgumentInfo() 2335 for(int i = 0; i < blockId; ++i) in getArgumentInfo() 2341 const BlockDefinitionIndexMap& blockDefinition = blockDefinitions[blockId]; in getArgumentInfo() 3625 …pe &type, const TString &name, int registerIndex, bool samplersOnly, int blockId, BlockLayoutEncod… in declareUniform() argument [all …]
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | merge_return_pass.cpp | 91 auto blockId = block->GetLabelInst()->result_id(); in ProcessStructured() local 92 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured() 115 auto blockId = block->id(); in ProcessStructured() local 116 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured()
|
/external/v4l2_codec2/include/ |
D | C2VDAComponent.h | 250 GraphicBlockInfo* getGraphicBlockById(int32_t blockId); 274 void updateUndequeuedBlockIds(int32_t blockId);
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | merge_return_pass.cpp | 91 auto blockId = block->GetLabelInst()->result_id(); in ProcessStructured() local 92 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured() 115 auto blockId = block->id(); in ProcessStructured() local 116 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured()
|
/external/v4l2_codec2/ |
D | C2VDAComponent.cpp | 699 void C2VDAComponent::updateUndequeuedBlockIds(int32_t blockId) { in updateUndequeuedBlockIds() argument 701 mUndequeuedBlockIds.push_back(blockId); in updateUndequeuedBlockIds() 895 C2VDAComponent::GraphicBlockInfo* C2VDAComponent::getGraphicBlockById(int32_t blockId) { in getGraphicBlockById() argument 896 if (blockId < 0 || blockId >= static_cast<int32_t>(mGraphicBlocks.size())) { in getGraphicBlockById() 897 ALOGE("getGraphicBlockById failed: id=%d", blockId); in getGraphicBlockById() 900 return &mGraphicBlocks[blockId]; in getGraphicBlockById()
|
/external/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()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | UCharacter.java | 2532 for (int blockId = 0; blockId < COUNT; ++blockId) { 2533 if (BLOCKS_[blockId] == null) { 2535 "UnicodeBlock.BLOCKS_[" + blockId + "] not initialized");
|
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
D | UCharacter.java | 2167 for (int blockId = 0; blockId < COUNT; ++blockId) { 2168 if (BLOCKS_[blockId] == null) { 2170 "UnicodeBlock.BLOCKS_[" + blockId + "] not initialized");
|
/external/skqp/src/sksl/ |
D | SkSLCompiler.cpp | 384 void Compiler::scanCFG(CFG* cfg, BlockId blockId, std::set<BlockId>* workList) { in scanCFG() argument 385 BasicBlock& block = cfg->fBlocks[blockId]; in scanCFG() 395 if (exitId == blockId) { in scanCFG()
|
/external/skia/src/sksl/ |
D | SkSLCompiler.cpp | 384 void Compiler::scanCFG(CFG* cfg, BlockId blockId, std::set<BlockId>* workList) { in scanCFG() argument 385 BasicBlock& block = cfg->fBlocks[blockId]; in scanCFG() 395 if (exitId == blockId) { in scanCFG()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowArscAssetManager.java | 619 int blockId = ShadowArscAssetManager in getResourceBagValue() local 622 return resTable.getTableStringBlock(blockId).stringAt(outValue.data); in getResourceBagValue()
|