Home
last modified time | relevance | path

Searched refs:member_components (Results 1 – 4 of 4) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp374 std::unordered_map<uint32_t, uint32_t> member_components; in GetLocationsForVariable() local
386 auto where = member_components.find(dec.struct_member_index()); in GetLocationsForVariable()
387 if (where == member_components.end()) { in GetLocationsForVariable()
388 member_components[dec.struct_member_index()] = dec.params()[0]; in GetLocationsForVariable()
414 if (member_components.count(i - 1)) { in GetLocationsForVariable()
415 component = member_components[i - 1]; in GetLocationsForVariable()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/val/
Dvalidate_interfaces.cpp374 std::unordered_map<uint32_t, uint32_t> member_components; in GetLocationsForVariable() local
386 auto where = member_components.find(dec.struct_member_index()); in GetLocationsForVariable()
387 if (where == member_components.end()) { in GetLocationsForVariable()
388 member_components[dec.struct_member_index()] = dec.params()[0]; in GetLocationsForVariable()
414 if (member_components.count(i - 1)) { in GetLocationsForVariable()
415 component = member_components[i - 1]; in GetLocationsForVariable()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_interfaces.cpp374 std::unordered_map<uint32_t, uint32_t> member_components; in GetLocationsForVariable() local
386 auto where = member_components.find(dec.struct_member_index()); in GetLocationsForVariable()
387 if (where == member_components.end()) { in GetLocationsForVariable()
388 member_components[dec.struct_member_index()] = dec.params()[0]; in GetLocationsForVariable()
414 if (member_components.count(i - 1)) { in GetLocationsForVariable()
415 component = member_components[i - 1]; in GetLocationsForVariable()
/external/vulkan-validation-layers/layers/
Dshader_validation.cpp615 std::unordered_map<unsigned, unsigned> member_components; in CollectInterfaceBlockMembers() local
626 member_components[member_index] = component; in CollectInterfaceBlockMembers()
650 auto component_it = member_components.find(member_index); in CollectInterfaceBlockMembers()
651 … unsigned component = component_it == member_components.end() ? 0 : component_it->second; in CollectInterfaceBlockMembers()