Home
last modified time | relevance | path

Searched refs:blockId (Results 1 – 18 of 18) sorted by relevance

/external/v8/tools/turbolizer/src/
Dtext-view.ts95 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 …]
Ddisassembly-view.ts37 const [nodes, blockId] = sourceResolver.nodesForPCOffset(offset) constant
77 blockId: function (text) { constant
86 const blockId = matches[0]; constant
92 view.blockSelectionHandler.select([blockId], true);
Dsource-resolver.ts322 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
Dschedule-view.ts121 function mkBlockLinkHandler(blockId) {
127 view.blockSelectionHandler.select(["" + blockId], true);
/external/u-boot/fs/yaffs2/
Dyaffs_nandif.c139 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()
Dyaffs_nandif.h51 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/
DOutputASM.h74 …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…
DOutputASM.cpp278 …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/
Dmerge_return_pass.cpp91 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/
DC2VDAComponent.h250 GraphicBlockInfo* getGraphicBlockById(int32_t blockId);
274 void updateUndequeuedBlockIds(int32_t blockId);
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dmerge_return_pass.cpp91 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/
DC2VDAComponent.cpp699 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/
DProgram.cpp489 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/
DUCharacter.java2532 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/
DUCharacter.java2167 for (int blockId = 0; blockId < COUNT; ++blockId) {
2168 if (BLOCKS_[blockId] == null) {
2170 "UnicodeBlock.BLOCKS_[" + blockId + "] not initialized");
/external/skqp/src/sksl/
DSkSLCompiler.cpp384 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/
DSkSLCompiler.cpp384 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/
DShadowArscAssetManager.java619 int blockId = ShadowArscAssetManager in getResourceBagValue() local
622 return resTable.getTableStringBlock(blockId).stringAt(outValue.data); in getResourceBagValue()