Home
last modified time | relevance | path

Searched refs:already_seen (Results 1 – 14 of 14) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/javamicro/
Djavamicro_message.cc98 std::unordered_set<const Descriptor*>* already_seen) { in HasRequiredFields() argument
99 if (already_seen->count(type) > 0) { in HasRequiredFields()
110 already_seen->insert(type); in HasRequiredFields()
123 if (HasRequiredFields(field->message_type(), already_seen)) { in HasRequiredFields()
133 std::unordered_set<const Descriptor*> already_seen; in HasRequiredFields() local
134 return HasRequiredFields(type, &already_seen); in HasRequiredFields()
/external/deqp-deps/SPIRV-Tools/source/reduce/
Dstructured_loop_to_selection_reduction_opportunity.cpp72 std::set<uint32_t> already_seen; in RedirectToClosestMergeBlock() local
74 if (already_seen.find(pred) != already_seen.end()) { in RedirectToClosestMergeBlock()
79 already_seen.insert(pred); in RedirectToClosestMergeBlock()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/fact_manager/
Dconstant_uniform_facts.cpp78 std::set<uint32_t> already_seen; in GetConstantsAvailableFromUniformsForType() local
84 if (already_seen.find(constant_id) == already_seen.end()) { in GetConstantsAvailableFromUniformsForType()
86 already_seen.insert(constant_id); in GetConstantsAvailableFromUniformsForType()
/external/swiftshader/third_party/SPIRV-Tools/source/reduce/
Dstructured_loop_to_selection_reduction_opportunity.cpp72 std::set<uint32_t> already_seen; in RedirectToClosestMergeBlock() local
74 if (already_seen.find(pred) != already_seen.end()) { in RedirectToClosestMergeBlock()
79 already_seen.insert(pred); in RedirectToClosestMergeBlock()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/reduce/
Dstructured_loop_to_selection_reduction_opportunity.cpp70 std::set<uint32_t> already_seen; in RedirectToClosestMergeBlock() local
72 if (already_seen.find(pred) != already_seen.end()) { in RedirectToClosestMergeBlock()
77 already_seen.insert(pred); in RedirectToClosestMergeBlock()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/fact_manager/
Dconstant_uniform_facts.cpp78 std::set<uint32_t> already_seen; in GetConstantsAvailableFromUniformsForType() local
84 if (already_seen.find(constant_id) == already_seen.end()) { in GetConstantsAvailableFromUniformsForType()
86 already_seen.insert(constant_id); in GetConstantsAvailableFromUniformsForType()
/external/deqp-deps/SPIRV-Tools/source/fuzz/fact_manager/
Dconstant_uniform_facts.cpp78 std::set<uint32_t> already_seen; in GetConstantsAvailableFromUniformsForType() local
84 if (already_seen.find(constant_id) == already_seen.end()) { in GetConstantsAvailableFromUniformsForType()
86 already_seen.insert(constant_id); in GetConstantsAvailableFromUniformsForType()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_helpers.cc843 std::unordered_set<const Descriptor*>* already_seen) { in HasRequiredFields() argument
844 if (already_seen->count(type) > 0) { in HasRequiredFields()
855 already_seen->insert(type); in HasRequiredFields()
868 if (HasRequiredFields(field->message_type(), already_seen)) { in HasRequiredFields()
878 std::unordered_set<const Descriptor*> already_seen; in HasRequiredFields() local
879 return HasRequiredFields(type, &already_seen); in HasRequiredFields()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dssa_rewrite_pass.cpp528 std::unordered_map<uint32_t, uint32_t> already_seen; in ApplyReplacements() local
531 if (already_seen.count(pred_label) == 0) { in ApplyReplacements()
536 already_seen[pred_label] = op_val_id; in ApplyReplacements()
541 assert(already_seen[pred_label] == op_val_id && in ApplyReplacements()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dssa_rewrite_pass.cpp528 std::unordered_map<uint32_t, uint32_t> already_seen; in ApplyReplacements() local
531 if (already_seen.count(pred_label) == 0) { in ApplyReplacements()
536 already_seen[pred_label] = op_val_id; in ApplyReplacements()
541 assert(already_seen[pred_label] == op_val_id && in ApplyReplacements()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dssa_rewrite_pass.cpp528 std::unordered_map<uint32_t, uint32_t> already_seen; in ApplyReplacements() local
531 if (already_seen.count(pred_label) == 0) { in ApplyReplacements()
536 already_seen[pred_label] = op_val_id; in ApplyReplacements()
541 assert(already_seen[pred_label] == op_val_id && in ApplyReplacements()
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface.cc1951 std::set<const FileDescriptor*> already_seen; in GenerateDependencyManifestFile() local
1953 GetTransitiveDependencies(parsed_files[i], false, false, &already_seen, in GenerateDependencyManifestFile()
2029 std::set<const FileDescriptor*> already_seen; in GeneratePluginOutput() local
2035 &already_seen, request.mutable_proto_file()); in GeneratePluginOutput()
2171 std::set<const FileDescriptor*> already_seen; in WriteDescriptorSet() local
2185 already_seen.insert(dependency); in WriteDescriptorSet()
2193 source_info_in_descriptor_set_, &already_seen, in WriteDescriptorSet()
2227 std::set<const FileDescriptor*>* already_seen, in GetTransitiveDependencies() argument
2229 if (!already_seen->insert(file).second) { in GetTransitiveDependencies()
2237 include_source_code_info, already_seen, output); in GetTransitiveDependencies()
Dcommand_line_interface.h313 std::set<const FileDescriptor*>* already_seen,
/external/mesa3d/src/compiler/nir/
Dnir_validate.c293 bool already_seen = false; in validate_ssa_def() local
294 _mesa_set_search_and_add(state->ssa_srcs, src, &already_seen); in validate_ssa_def()
296 validate_assert(state, !already_seen); in validate_ssa_def()
303 bool already_seen = false; in validate_ssa_def() local
305 &already_seen); in validate_ssa_def()
307 validate_assert(state, !already_seen); in validate_ssa_def()