Searched refs:existing_id (Results 1 – 10 of 10) sorted by relevance
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/ |
D | fuzzer_pass.cpp | 215 if (auto existing_id = fuzzerutil::MaybeGetBoolType(GetIRContext())) { in FindOrCreateBoolType() local 216 return existing_id; in FindOrCreateBoolType() 225 auto existing_id = GetIRContext()->get_type_mgr()->GetId(&int_type); in FindOrCreateIntegerType() local 226 if (existing_id) { in FindOrCreateIntegerType() 227 return existing_id; in FindOrCreateIntegerType() 236 auto existing_id = GetIRContext()->get_type_mgr()->GetId(&float_type); in FindOrCreateFloatType() local 237 if (existing_id) { in FindOrCreateFloatType() 238 return existing_id; in FindOrCreateFloatType() 254 auto existing_id = fuzzerutil::FindFunctionType(GetIRContext(), type_ids); in FindOrCreateFunctionType() local 255 if (existing_id) { in FindOrCreateFunctionType() [all …]
|
D | transformation_equation_instruction.cpp | 200 if (auto existing_id = fuzzerutil::MaybeGetIntegerType( in MaybeGetResultTypeId() local 202 return existing_id; in MaybeGetResultTypeId()
|
D | fuzzer_util.cpp | 1093 if (auto existing_id = FindFunctionType(ir_context, type_ids)) { in FindOrCreateFunctionType() local 1094 return existing_id; in FindOrCreateFunctionType()
|
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | fuzzer_pass.cpp | 188 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 …]
|
D | transformation_equation_instruction.cpp | 196 if (auto existing_id = fuzzerutil::MaybeGetIntegerType( in MaybeGetResultTypeId() local 198 return existing_id; in MaybeGetResultTypeId()
|
D | fuzzer_util.cpp | 1034 if (auto existing_id = FindFunctionType(ir_context, type_ids)) { in FindOrCreateFunctionType() local 1035 return existing_id; in FindOrCreateFunctionType()
|
/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | fuzzer_pass.cpp | 188 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 …]
|
D | transformation_equation_instruction.cpp | 196 if (auto existing_id = fuzzerutil::MaybeGetIntegerType( in MaybeGetResultTypeId() local 198 return existing_id; in MaybeGetResultTypeId()
|
D | fuzzer_util.cpp | 1034 if (auto existing_id = FindFunctionType(ir_context, type_ids)) { in FindOrCreateFunctionType() local 1035 return existing_id; in FindOrCreateFunctionType()
|
/external/rust/crates/criterion/src/ |
D | report.rs | 817 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()
|