Searched refs:mapName (Results 1 – 3 of 3) sorted by relevance
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
D | json_parser.py | 637 def genBitmaskCode(self, str1, str2, name, mapName): argument 640 if mapName in self.featureDict and self.featureDict[mapName] != "VK_VERSION_1_0": 641 ifdefName = self.featureDict[mapName] 648 if mapName is not None: 660 code += " o |= (%s)%s_map[it];\n" %(mapName, mapName)
|
D | json_c_generator.py | 298 def genBitmaskCode(self, str1, str2, name, mapName): argument 299 if mapName is not None: 324 code += " vk_json_printf(_OUT, \"%%s | \", %s_map(1<<i));\n" %(mapName) 326 code += " vk_json_printf(_OUT, \"%%s\", %s_map(1<<i));\n" %(mapName)
|
D | json_generator.py | 616 def genBitmaskCode(self, str1, str2, name, mapName): argument 617 if mapName is not None: 630 code += " _OUT << %s_map[1ULL<<i] << \" | \";\n" %(mapName) 632 code += " _OUT << %s_map[1ULL<<i];\n" %(mapName)
|