/third_party/skia/third_party/externals/spirv-tools/test/fuzz/ |
H A D | transformation_push_id_through_variable_test.cpp | 113 uint32_t variable_storage_class = SpvStorageClassPrivate; in TEST() local 117 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 127 variable_storage_class = SpvStorageClassFunction; in TEST() 130 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 140 variable_storage_class = SpvStorageClassFunction; in TEST() 143 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 154 variable_storage_class = SpvStorageClassFunction; in TEST() 157 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 167 variable_storage_class = SpvStorageClassFunction; in TEST() 170 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 338 uint32_t variable_storage_class = SpvStorageClassFunction; TEST() local 605 uint32_t variable_storage_class = SpvStorageClassPrivate; TEST() local 708 uint32_t variable_storage_class = SpvStorageClassPrivate; TEST() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/ |
H A D | transformation_push_id_through_variable_test.cpp | 113 uint32_t variable_storage_class = SpvStorageClassPrivate; in TEST() local 117 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 127 variable_storage_class = SpvStorageClassFunction; in TEST() 130 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 140 variable_storage_class = SpvStorageClassFunction; in TEST() 143 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 154 variable_storage_class = SpvStorageClassFunction; in TEST() 157 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 167 variable_storage_class = SpvStorageClassFunction; in TEST() 170 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 338 uint32_t variable_storage_class = SpvStorageClassFunction; TEST() local 605 uint32_t variable_storage_class = SpvStorageClassPrivate; TEST() local 708 uint32_t variable_storage_class = SpvStorageClassPrivate; TEST() local [all...] |
/third_party/spirv-tools/test/fuzz/ |
H A D | transformation_push_id_through_variable_test.cpp | 113 uint32_t variable_storage_class = (uint32_t)spv::StorageClass::Private; in TEST() local 117 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 127 variable_storage_class = (uint32_t)spv::StorageClass::Function; in TEST() 131 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 141 variable_storage_class = (uint32_t)spv::StorageClass::Function; in TEST() 145 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 156 variable_storage_class = (uint32_t)spv::StorageClass::Function; in TEST() 160 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 170 variable_storage_class = (uint32_t)spv::StorageClass::Function; in TEST() 174 value_id, value_synonym_id, variable_id, variable_storage_class, in TEST() 348 uint32_t variable_storage_class = (uint32_t)spv::StorageClass::Function; TEST() local 619 uint32_t variable_storage_class = (uint32_t)spv::StorageClass::Private; TEST() local 722 uint32_t variable_storage_class = (uint32_t)spv::StorageClass::Private; TEST() local [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_global_variables.cpp | 32 SpvStorageClass variable_storage_class = SpvStorageClassPrivate; in Apply() local 37 variable_storage_class = in Apply() 47 GetAvailableBasicTypesAndPointers(variable_storage_class); in Apply() 79 pointer_type_id, variable_storage_class, basic_type)); in Apply() 89 variable_storage_class, in Apply() 90 variable_storage_class == SpvStorageClassPrivate in Apply()
|
H A D | transformation_push_id_through_variable.cpp | 29 uint32_t variable_storage_class, uint32_t initializer_id, in TransformationPushIdThroughVariable() 34 message_.set_variable_storage_class(variable_storage_class); in TransformationPushIdThroughVariable() 78 static_cast<SpvStorageClass>(message_.variable_storage_class())); in IsApplicable() 83 // |message_.variable_storage_class| must be private or function. in IsApplicable() 84 assert((message_.variable_storage_class() == SpvStorageClassPrivate || in IsApplicable() 85 message_.variable_storage_class() == SpvStorageClassFunction) && in IsApplicable() 114 static_cast<SpvStorageClass>(message_.variable_storage_class())); in Apply() 118 if (message_.variable_storage_class() == SpvStorageClassPrivate) { in Apply() 27 TransformationPushIdThroughVariable( uint32_t value_id, uint32_t value_synonym_id, uint32_t variable_id, uint32_t variable_storage_class, uint32_t initializer_id, const protobufs::InstructionDescriptor& instruction_descriptor) TransformationPushIdThroughVariable() argument
|
H A D | transformation_replace_copy_object_with_store_load.cpp | 31 uint32_t variable_storage_class, uint32_t variable_initializer_id) { in TransformationReplaceCopyObjectWithStoreLoad() 34 message_.set_variable_storage_class(variable_storage_class); in TransformationReplaceCopyObjectWithStoreLoad() 64 static_cast<SpvStorageClass>(message_.variable_storage_class())); in IsApplicable() 76 // |message_.variable_storage_class| must be Private or Function. in IsApplicable() 77 return message_.variable_storage_class() == SpvStorageClassPrivate || in IsApplicable() 78 message_.variable_storage_class() == SpvStorageClassFunction; in IsApplicable() 99 static_cast<SpvStorageClass>(message_.variable_storage_class())); in Apply() 103 if (message_.variable_storage_class() == SpvStorageClassPrivate) { in Apply() 29 TransformationReplaceCopyObjectWithStoreLoad( uint32_t copy_object_result_id, uint32_t fresh_variable_id, uint32_t variable_storage_class, uint32_t variable_initializer_id) TransformationReplaceCopyObjectWithStoreLoad() argument
|
H A D | fuzzer_pass_push_ids_through_variables.cpp | 65 auto variable_storage_class = GetFuzzerContext()->ChooseEven() in Apply() 71 GetAvailableBasicTypesAndPointers(variable_storage_class); in Apply() 121 FindOrCreatePointerType(basic_type_id, variable_storage_class); in Apply() 153 variable_storage_class, initializer_id, instruction_descriptor)); in Apply()
|
H A D | fuzzer_pass_replace_copy_objects_with_stores_loads.cpp | 63 auto variable_storage_class = GetFuzzerContext()->ChooseEven() in Apply() 78 FindOrCreatePointerType(instruction->type_id(), variable_storage_class); in Apply() 82 variable_storage_class, variable_initializer_id)); in Apply()
|
H A D | transformation_push_id_through_variable.h | 33 uint32_t variable_fresh_id, uint32_t variable_storage_class, 41 // - |message_.variable_storage_class| must be either StorageClassPrivate or
|
H A D | transformation_replace_copy_object_with_store_load.h | 33 uint32_t variable_storage_class, uint32_t variable_initializer_id); 39 // - |message_.variable_storage_class| must be either StorageClassPrivate or
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | fuzzer_pass_add_global_variables.cpp | 32 SpvStorageClass variable_storage_class = SpvStorageClassPrivate; in Apply() local 37 variable_storage_class = in Apply() 47 GetAvailableBasicTypesAndPointers(variable_storage_class); in Apply() 79 pointer_type_id, variable_storage_class, basic_type)); in Apply() 89 variable_storage_class, in Apply() 90 variable_storage_class == SpvStorageClassPrivate in Apply()
|
H A D | transformation_push_id_through_variable.cpp | 29 uint32_t variable_storage_class, uint32_t initializer_id, in TransformationPushIdThroughVariable() 34 message_.set_variable_storage_class(variable_storage_class); in TransformationPushIdThroughVariable() 78 static_cast<SpvStorageClass>(message_.variable_storage_class())); in IsApplicable() 83 // |message_.variable_storage_class| must be private or function. in IsApplicable() 84 assert((message_.variable_storage_class() == SpvStorageClassPrivate || in IsApplicable() 85 message_.variable_storage_class() == SpvStorageClassFunction) && in IsApplicable() 114 static_cast<SpvStorageClass>(message_.variable_storage_class())); in Apply() 118 if (message_.variable_storage_class() == SpvStorageClassPrivate) { in Apply() 27 TransformationPushIdThroughVariable( uint32_t value_id, uint32_t value_synonym_id, uint32_t variable_id, uint32_t variable_storage_class, uint32_t initializer_id, const protobufs::InstructionDescriptor& instruction_descriptor) TransformationPushIdThroughVariable() argument
|
H A D | transformation_replace_copy_object_with_store_load.cpp | 31 uint32_t variable_storage_class, uint32_t variable_initializer_id) { in TransformationReplaceCopyObjectWithStoreLoad() 34 message_.set_variable_storage_class(variable_storage_class); in TransformationReplaceCopyObjectWithStoreLoad() 64 static_cast<SpvStorageClass>(message_.variable_storage_class())); in IsApplicable() 76 // |message_.variable_storage_class| must be Private or Function. in IsApplicable() 77 return message_.variable_storage_class() == SpvStorageClassPrivate || in IsApplicable() 78 message_.variable_storage_class() == SpvStorageClassFunction; in IsApplicable() 99 static_cast<SpvStorageClass>(message_.variable_storage_class())); in Apply() 103 if (message_.variable_storage_class() == SpvStorageClassPrivate) { in Apply() 29 TransformationReplaceCopyObjectWithStoreLoad( uint32_t copy_object_result_id, uint32_t fresh_variable_id, uint32_t variable_storage_class, uint32_t variable_initializer_id) TransformationReplaceCopyObjectWithStoreLoad() argument
|
H A D | fuzzer_pass_push_ids_through_variables.cpp | 65 auto variable_storage_class = GetFuzzerContext()->ChooseEven() in Apply() 71 GetAvailableBasicTypesAndPointers(variable_storage_class); in Apply() 121 FindOrCreatePointerType(basic_type_id, variable_storage_class); in Apply() 153 variable_storage_class, initializer_id, instruction_descriptor)); in Apply()
|
H A D | fuzzer_pass_replace_copy_objects_with_stores_loads.cpp | 63 auto variable_storage_class = GetFuzzerContext()->ChooseEven() in Apply() 78 FindOrCreatePointerType(instruction->type_id(), variable_storage_class); in Apply() 82 variable_storage_class, variable_initializer_id)); in Apply()
|
H A D | transformation_push_id_through_variable.h | 33 uint32_t variable_fresh_id, uint32_t variable_storage_class, 41 // - |message_.variable_storage_class| must be either StorageClassPrivate or
|
H A D | transformation_replace_copy_object_with_store_load.h | 33 uint32_t variable_storage_class, uint32_t variable_initializer_id); 39 // - |message_.variable_storage_class| must be either StorageClassPrivate or
|
/third_party/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_global_variables.cpp | 32 spv::StorageClass variable_storage_class = spv::StorageClass::Private; in Apply() local 38 variable_storage_class = in Apply() 48 GetAvailableBasicTypesAndPointers(variable_storage_class); in Apply() 80 pointer_type_id, variable_storage_class, basic_type)); in Apply() 90 variable_storage_class, in Apply() 91 variable_storage_class == spv::StorageClass::Private in Apply()
|
H A D | transformation_replace_copy_object_with_store_load.cpp | 31 uint32_t variable_storage_class, uint32_t variable_initializer_id) { in TransformationReplaceCopyObjectWithStoreLoad() 34 message_.set_variable_storage_class(variable_storage_class); in TransformationReplaceCopyObjectWithStoreLoad() 64 static_cast<spv::StorageClass>(message_.variable_storage_class())); in IsApplicable() 76 // |message_.variable_storage_class| must be Private or Function. in IsApplicable() 77 return spv::StorageClass(message_.variable_storage_class()) == in IsApplicable() 79 spv::StorageClass(message_.variable_storage_class()) == in IsApplicable() 101 static_cast<spv::StorageClass>(message_.variable_storage_class())); in Apply() 105 if (spv::StorageClass(message_.variable_storage_class()) == in Apply() 29 TransformationReplaceCopyObjectWithStoreLoad( uint32_t copy_object_result_id, uint32_t fresh_variable_id, uint32_t variable_storage_class, uint32_t variable_initializer_id) TransformationReplaceCopyObjectWithStoreLoad() argument
|
H A D | transformation_push_id_through_variable.cpp | 29 uint32_t variable_storage_class, uint32_t initializer_id, in TransformationPushIdThroughVariable() 34 message_.set_variable_storage_class(variable_storage_class); in TransformationPushIdThroughVariable() 78 static_cast<spv::StorageClass>(message_.variable_storage_class())); in IsApplicable() 83 // |message_.variable_storage_class| must be private or function. in IsApplicable() 84 assert((message_.variable_storage_class() == in IsApplicable() 86 message_.variable_storage_class() == in IsApplicable() 116 static_cast<spv::StorageClass>(message_.variable_storage_class())); in Apply() 120 if (spv::StorageClass(message_.variable_storage_class()) == in Apply() 27 TransformationPushIdThroughVariable( uint32_t value_id, uint32_t value_synonym_id, uint32_t variable_id, uint32_t variable_storage_class, uint32_t initializer_id, const protobufs::InstructionDescriptor& instruction_descriptor) TransformationPushIdThroughVariable() argument
|
H A D | fuzzer_pass_push_ids_through_variables.cpp | 66 auto variable_storage_class = GetFuzzerContext()->ChooseEven() in Apply() 72 GetAvailableBasicTypesAndPointers(variable_storage_class); in Apply() 122 FindOrCreatePointerType(basic_type_id, variable_storage_class); in Apply() 154 uint32_t(variable_storage_class), initializer_id, in Apply()
|
H A D | fuzzer_pass_replace_copy_objects_with_stores_loads.cpp | 64 auto variable_storage_class = GetFuzzerContext()->ChooseEven() in Apply() 79 FindOrCreatePointerType(instruction->type_id(), variable_storage_class); in Apply() 83 uint32_t(variable_storage_class), variable_initializer_id)); in Apply()
|
H A D | transformation_push_id_through_variable.h | 33 uint32_t variable_fresh_id, uint32_t variable_storage_class, 41 // - |message_.variable_storage_class| must be either StorageClassPrivate or
|
H A D | transformation_replace_copy_object_with_store_load.h | 33 uint32_t variable_storage_class, uint32_t variable_initializer_id); 39 // - |message_.variable_storage_class| must be either StorageClassPrivate or
|