/external/swiftshader/third_party/SPIRV-Tools/test/ |
D | text_to_binary.constant_test.cpp | 123 MakeInstruction(SpvOpConstant, {1, 2, 0x1234})})}, 126 MakeInstruction(SpvOpConstant, {1, 2, 0x8000})})}, 129 MakeInstruction(SpvOpConstant, {1, 2, 0})})}, 132 MakeInstruction(SpvOpConstant, {1, 2, 65535})})}, 135 MakeInstruction(SpvOpConstant, {1, 2, 65535})})}, 138 MakeInstruction(SpvOpConstant, {1, 2, 0xffff8000})})}, 141 MakeInstruction(SpvOpConstant, {1, 2, uint32_t(-32)})})}, 144 MakeInstruction(SpvOpConstant, {1, 2, 0})})}, 147 MakeInstruction(SpvOpConstant, {1, 2, 0})})}, 150 MakeInstruction(SpvOpConstant, {1, 2, 0})})}, [all …]
|
D | text_to_binary_test.cpp | 185 MakeInstruction(SpvOpConstant, {1, 2, 123})}))); in TEST_F() 196 MakeInstruction(SpvOpConstant, in TEST_P() 226 MakeInstruction(SpvOpConstant, in TEST_P()
|
D | text_to_binary.control_flow_test.cpp | 148 MakeInstruction(SpvOpConstant, {1, 2, 52}), in TEST_F() 159 MakeInstruction(SpvOpConstant, {1, 2, 52}), in TEST_F() 248 MakeInstruction(SpvOpConstant, in MakeSwitchTestCase()
|
D | binary_parse_test.cpp | 651 {spvOpcodeMake(5, SpvOpConstant), 1, 2}}), 659 {spvOpcodeMake(5, SpvOpConstant), 1, 2, 42}}), 693 {spvOpcodeMake(4, SpvOpConstant), 1, 2, 44, 44}}), 800 MakeInstruction(SpvOpConstant, {1, 2, 0x78f00000}), 810 MakeInstruction(SpvOpConstant, {2, 2, 42}), 816 MakeInstruction(SpvOpConstant, {1, 2, 42}),
|
D | immediate_int_test.cpp | 112 MakeInstruction(SpvOpConstant, {1, 2, 4294967295}), in TEST_F() 155 MakeInstruction(SpvOpConstant, {1, 2, 0xb, 0xa}), in TEST_F()
|
D | binary_to_text_test.cpp | 179 {"", spvtest::MakeInstruction(SpvOpConstant, {0, 1, 42}), 193 {"", spvtest::MakeInstruction(SpvOpConstant, {500, 1, 42}), 197 spvtest::MakeInstruction(SpvOpConstant, {2, 3, 999}),
|
/external/deqp-deps/SPIRV-Tools/test/ |
D | text_to_binary.constant_test.cpp | 123 MakeInstruction(SpvOpConstant, {1, 2, 0x1234})})}, 126 MakeInstruction(SpvOpConstant, {1, 2, 0x8000})})}, 129 MakeInstruction(SpvOpConstant, {1, 2, 0})})}, 132 MakeInstruction(SpvOpConstant, {1, 2, 65535})})}, 135 MakeInstruction(SpvOpConstant, {1, 2, 65535})})}, 138 MakeInstruction(SpvOpConstant, {1, 2, 0xffff8000})})}, 141 MakeInstruction(SpvOpConstant, {1, 2, uint32_t(-32)})})}, 144 MakeInstruction(SpvOpConstant, {1, 2, 0})})}, 147 MakeInstruction(SpvOpConstant, {1, 2, 0})})}, 150 MakeInstruction(SpvOpConstant, {1, 2, 0})})}, [all …]
|
D | text_to_binary_test.cpp | 185 MakeInstruction(SpvOpConstant, {1, 2, 123})}))); in TEST_F() 196 MakeInstruction(SpvOpConstant, in TEST_P() 226 MakeInstruction(SpvOpConstant, in TEST_P()
|
D | text_to_binary.control_flow_test.cpp | 148 MakeInstruction(SpvOpConstant, {1, 2, 52}), in TEST_F() 159 MakeInstruction(SpvOpConstant, {1, 2, 52}), in TEST_F() 248 MakeInstruction(SpvOpConstant, in MakeSwitchTestCase()
|
D | binary_parse_test.cpp | 649 {spvOpcodeMake(5, SpvOpConstant), 1, 2}}), 657 {spvOpcodeMake(5, SpvOpConstant), 1, 2, 42}}), 691 {spvOpcodeMake(4, SpvOpConstant), 1, 2, 44, 44}}), 798 MakeInstruction(SpvOpConstant, {1, 2, 0x78f00000}), 808 MakeInstruction(SpvOpConstant, {2, 2, 42}), 814 MakeInstruction(SpvOpConstant, {1, 2, 42}),
|
D | immediate_int_test.cpp | 112 MakeInstruction(SpvOpConstant, {1, 2, 4294967295}), in TEST_F() 155 MakeInstruction(SpvOpConstant, {1, 2, 0xb, 0xa}), in TEST_F()
|
D | binary_to_text_test.cpp | 172 {"", spvtest::MakeInstruction(SpvOpConstant, {0, 1, 42}), 186 {"", spvtest::MakeInstruction(SpvOpConstant, {500, 1, 42}), 190 spvtest::MakeInstruction(SpvOpConstant, {2, 3, 999}),
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | strength_reduction_pass.cpp | 87 if (opInst->opcode() == SpvOp::SpvOpConstant) { in ReplaceMultiplyByPowerOf2() 136 case SpvOp::SpvOpConstant: in FindIntTypesAndConstants() 163 new Instruction(context(), SpvOp::SpvOpConstant, uint32_type_id_, in GetConstantId()
|
D | freeze_spec_constant_value_pass.cpp | 27 inst->SetOpcode(SpvOp::SpvOpConstant); in Process()
|
D | constants.cpp | 273 case SpvOp::SpvOpConstant: in GetConstantFromInst() 298 context(), SpvOp::SpvOpConstant, type, id, in CreateInstruction() 304 context(), SpvOp::SpvOpConstant, type, id, in CreateInstruction()
|
D | inst_bindless_check_pass.cpp | 131 if (index_inst->opcode() == SpvOpConstant && in GenBindlessCheckCode() 132 length_inst->opcode() == SpvOpConstant && in GenBindlessCheckCode()
|
D | unify_const_pass.cpp | 144 case SpvOp::SpvOpConstant: in Process()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | strength_reduction_pass.cpp | 87 if (opInst->opcode() == SpvOp::SpvOpConstant) { in ReplaceMultiplyByPowerOf2() 136 case SpvOp::SpvOpConstant: in FindIntTypesAndConstants() 163 new Instruction(context(), SpvOp::SpvOpConstant, uint32_type_id_, in GetConstantId()
|
D | freeze_spec_constant_value_pass.cpp | 27 inst->SetOpcode(SpvOp::SpvOpConstant); in Process()
|
D | constants.cpp | 273 case SpvOp::SpvOpConstant: in GetConstantFromInst() 298 context(), SpvOp::SpvOpConstant, type, id, in CreateInstruction() 304 context(), SpvOp::SpvOpConstant, type, id, in CreateInstruction()
|
D | inst_bindless_check_pass.cpp | 131 if (index_inst->opcode() == SpvOpConstant && in GenBindlessCheckCode() 132 length_inst->opcode() == SpvOpConstant && in GenBindlessCheckCode()
|
D | unify_const_pass.cpp | 144 case SpvOp::SpvOpConstant: in Process()
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | propagator_test.cpp | 114 if (rhs_def->opcode() == SpvOpConstant) { in TEST_F() 181 if (rhs_def->opcode() == SpvOpConstant) { in TEST_F()
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | propagator_test.cpp | 114 if (rhs_def->opcode() == SpvOpConstant) { in TEST_F() 181 if (rhs_def->opcode() == SpvOpConstant) { in TEST_F()
|
/external/swiftshader/third_party/SPIRV-Tools/tools/stats/ |
D | spirv_stats.cpp | 100 if (inst->opcode() != SpvOpConstant) return; in ProcessConstant()
|