/third_party/spirv-headers/tools/buildHeaders/ |
H A D | jsonToSpirv.cpp | 155 if (!lastVersion.empty() && !validSpirvVersionString(lastVersion)) { in IsValid() 156 std::cerr << "Error: " << context << " " << name << " \"lastVersion\" is invalid: " << lastVersion << std::endl; in IsValid() 577 std::string lastVersion = inst["lastVersion"].asString(); in jsonToSpirv() local 593 std::move(caps), std::move(version), std::move(lastVersion), std::move(exts), in jsonToSpirv() 644 std::string lastVersion = enumerant["lastVersion"].asString(); in jsonToSpirv() 659 std::move(caps), std::move(version), std::move(lastVersion), st in jsonToSpirv() [all...] |
H A D | jsonToSpirv.h | 209 firstVersion(std::move(the_firstVersion)), lastVersion(std::move(the_lastVersion)), in EnumValue() 219 std::string lastVersion; member in spv::EnumValue
|
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | table.h | 44 const uint32_t lastVersion; member 63 const uint32_t lastVersion; member
|
H A D | operand.cpp | 75 if (((version >= entry.minVersion && version <= entry.lastVersion) || in spvOperandTableNameLookup() 131 if ((version >= it->minVersion && version <= it->lastVersion) || in spvOperandTableValueLookup()
|
H A D | opcode.cpp | 113 if (((version >= entry.minVersion && version <= entry.lastVersion) || in spvOpcodeTableNameLookup() 159 if ((version >= it->minVersion && version <= it->lastVersion) || in spvOpcodeTableValueLookup()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | table.h | 44 const uint32_t lastVersion; member 63 const uint32_t lastVersion; member
|
H A D | operand.cpp | 75 if (((version >= entry.minVersion && version <= entry.lastVersion) || in spvOperandTableNameLookup() 131 if ((version >= it->minVersion && version <= it->lastVersion) || in spvOperandTableValueLookup()
|
H A D | opcode.cpp | 113 if (((version >= entry.minVersion && version <= entry.lastVersion) || in spvOpcodeTableNameLookup() 159 if ((version >= it->minVersion && version <= it->lastVersion) || in spvOpcodeTableValueLookup()
|
/third_party/spirv-tools/source/ |
H A D | table.h | 44 const uint32_t lastVersion; member 63 const uint32_t lastVersion; member
|
H A D | assembly_grammar.cpp | 188 if ((version >= entry->minVersion && version <= entry->lastVersion) || in filterCapsAgainstTargetEnv()
|
H A D | opcode.cpp | 113 if (((version >= entry.minVersion && version <= entry.lastVersion) || in spvOpcodeTableNameLookup() 159 if ((version >= it->minVersion && version <= it->lastVersion) || in spvOpcodeTableValueLookup()
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 216 def __init__(self, opname, caps, exts, operands, version, lastVersion): 225 - lastVersion: last version of SPIR-V that includes this opcode 243 self.lastVersion = convert_max_required_version(lastVersion) 275 max_version=self.lastVersion) 328 max_version = inst.get('lastVersion', None) 392 def __init__(self, enumerant, value, caps, exts, parameters, version, lastVersion): 402 - lastVersion: last SPIR-V version this opode appears 412 self.lastVersion = convert_max_required_version(lastVersion) [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | generate_grammar_tables.py | 216 def __init__(self, opname, caps, exts, operands, version, lastVersion): 225 - lastVersion: last version of SPIR-V that includes this opcode 243 self.lastVersion = convert_max_required_version(lastVersion) 275 max_version=self.lastVersion) 328 max_version = inst.get('lastVersion', None) 392 def __init__(self, enumerant, value, caps, exts, parameters, version, lastVersion): 402 - lastVersion: last SPIR-V version this opode appears 412 self.lastVersion = convert_max_required_version(lastVersion) [all...] |
/third_party/spirv-tools/utils/ |
H A D | generate_grammar_tables.py | 226 def __init__(self, opname, caps, exts, operands, version, lastVersion): 235 - lastVersion: last version of SPIR-V that includes this opcode 253 self.lastVersion = convert_max_required_version(lastVersion) 290 max_version=self.lastVersion) 343 max_version = inst.get('lastVersion', None) 407 def __init__(self, enumerant, value, caps, exts, parameters, version, lastVersion): 417 - lastVersion: last SPIR-V version this opode appears 427 self.lastVersion = convert_max_required_version(lastVersion) [all...] |
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/ |
H A D | jsonToSpirv.h | 201 firstVersion(std::move(the_firstVersion)), lastVersion(std::move(the_lastVersion)), in EnumValue() 211 std::string lastVersion; member in spv::EnumValue
|
H A D | jsonToSpirv.cpp | 371 std::string lastVersion = inst["lastVersion"].asString(); in jsonToSpirv() local 387 std::move(caps), std::move(version), std::move(lastVersion), std::move(exts), in jsonToSpirv() 435 std::string lastVersion = enumerant["lastVersion"].asString(); in jsonToSpirv() 450 std::move(caps), std::move(version), std::move(lastVersion), std::move(exts), std::move(params)); in jsonToSpirv()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/ |
H A D | jsonToSpirv.h | 201 firstVersion(std::move(the_firstVersion)), lastVersion(std::move(the_lastVersion)), in EnumValue() 211 std::string lastVersion; member in spv::EnumValue
|
H A D | jsonToSpirv.cpp | 371 std::string lastVersion = inst["lastVersion"].asString(); in jsonToSpirv() local 387 std::move(caps), std::move(version), std::move(lastVersion), std::move(exts), in jsonToSpirv() 435 std::string lastVersion = enumerant["lastVersion"].asString(); in jsonToSpirv() 450 std::move(caps), std::move(version), std::move(lastVersion), std::move(exts), std::move(params)); in jsonToSpirv()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_instruction.cpp | 98 const uint32_t operand_last_version = operand_desc.lastVersion; in OperandVersionExtensionCheck() 289 const auto last_version = inst_desc->lastVersion; in VersionCheck()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_instruction.cpp | 98 const uint32_t operand_last_version = operand_desc.lastVersion; in OperandVersionExtensionCheck() 289 const auto last_version = inst_desc->lastVersion; in VersionCheck()
|
/third_party/spirv-tools/source/val/ |
H A D | validate_instruction.cpp | 92 const uint32_t operand_last_version = operand_desc.lastVersion; in OperandVersionExtensionCheck() 285 const auto last_version = inst_desc->lastVersion; in VersionCheck()
|