Home
last modified time | relevance | path

Searched refs:existing_id (Results 1 – 7 of 7) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dfuzzer_pass.cpp188 if (auto existing_id = fuzzerutil::MaybeGetBoolType(GetIRContext())) { in FindOrCreateBoolType() local
189 return existing_id; in FindOrCreateBoolType()
198 auto existing_id = GetIRContext()->get_type_mgr()->GetId(&int_type); in FindOrCreateIntegerType() local
199 if (existing_id) { in FindOrCreateIntegerType()
200 return existing_id; in FindOrCreateIntegerType()
209 auto existing_id = GetIRContext()->get_type_mgr()->GetId(&float_type); in FindOrCreateFloatType() local
210 if (existing_id) { in FindOrCreateFloatType()
211 return existing_id; in FindOrCreateFloatType()
227 auto existing_id = fuzzerutil::FindFunctionType(GetIRContext(), type_ids); in FindOrCreateFunctionType() local
228 if (existing_id) { in FindOrCreateFunctionType()
[all …]
Dtransformation_equation_instruction.cpp196 if (auto existing_id = fuzzerutil::MaybeGetIntegerType( in MaybeGetResultTypeId() local
198 return existing_id; in MaybeGetResultTypeId()
Dfuzzer_util.cpp1034 if (auto existing_id = FindFunctionType(ir_context, type_ids)) { in FindOrCreateFunctionType() local
1035 return existing_id; in FindOrCreateFunctionType()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dfuzzer_pass.cpp188 if (auto existing_id = fuzzerutil::MaybeGetBoolType(GetIRContext())) { in FindOrCreateBoolType() local
189 return existing_id; in FindOrCreateBoolType()
198 auto existing_id = GetIRContext()->get_type_mgr()->GetId(&int_type); in FindOrCreateIntegerType() local
199 if (existing_id) { in FindOrCreateIntegerType()
200 return existing_id; in FindOrCreateIntegerType()
209 auto existing_id = GetIRContext()->get_type_mgr()->GetId(&float_type); in FindOrCreateFloatType() local
210 if (existing_id) { in FindOrCreateFloatType()
211 return existing_id; in FindOrCreateFloatType()
227 auto existing_id = fuzzerutil::FindFunctionType(GetIRContext(), type_ids); in FindOrCreateFunctionType() local
228 if (existing_id) { in FindOrCreateFunctionType()
[all …]
Dtransformation_equation_instruction.cpp196 if (auto existing_id = fuzzerutil::MaybeGetIntegerType( in MaybeGetResultTypeId() local
198 return existing_id; in MaybeGetResultTypeId()
Dfuzzer_util.cpp1034 if (auto existing_id = FindFunctionType(ir_context, type_ids)) { in FindOrCreateFunctionType() local
1035 return existing_id; in FindOrCreateFunctionType()
/external/rust/crates/criterion/src/
Dreport.rs817 let existing_id = BenchmarkId::new( in test_benchmark_id_make_directory_name_unique() localVariable
824 directories.insert(existing_id.as_directory_name().to_owned()); in test_benchmark_id_make_directory_name_unique()
826 let mut new_id = existing_id.clone(); in test_benchmark_id_make_directory_name_unique()
831 new_id = existing_id.clone(); in test_benchmark_id_make_directory_name_unique()
839 let existing_id = BenchmarkId::new(long_name, None, None, None); in test_benchmark_id_make_long_directory_name_unique() localVariable
841 directories.insert(existing_id.as_directory_name().to_owned()); in test_benchmark_id_make_long_directory_name_unique()
843 let mut new_id = existing_id.clone(); in test_benchmark_id_make_long_directory_name_unique()
845 assert_ne!(existing_id.as_directory_name(), new_id.as_directory_name()); in test_benchmark_id_make_long_directory_name_unique()