/external/deqp-deps/amber/src/ |
D | type_parser_test.cc | 51 {FormatComponentType::kA, FormatMode::kSInt, 2}, in TEST_F() 52 {FormatComponentType::kB, FormatMode::kSInt, 10}, in TEST_F() 53 {FormatComponentType::kG, FormatMode::kSInt, 10}, in TEST_F() 54 {FormatComponentType::kR, FormatMode::kSInt, 10}, in TEST_F() 111 {FormatComponentType::kA, FormatMode::kSInt, 2}, in TEST_F() 112 {FormatComponentType::kR, FormatMode::kSInt, 10}, in TEST_F() 113 {FormatComponentType::kG, FormatMode::kSInt, 10}, in TEST_F() 114 {FormatComponentType::kB, FormatMode::kSInt, 10}, in TEST_F() 171 {FormatComponentType::kA, FormatMode::kSInt, 8}, in TEST_F() 172 {FormatComponentType::kB, FormatMode::kSInt, 8}, in TEST_F() [all …]
|
D | type_test.cc | 25 Number i(FormatMode::kSInt, 16); in TEST_F() 44 EXPECT_FALSE(Number(FormatMode::kSInt).IsStruct()); in TEST_F() 50 EXPECT_TRUE(Number(FormatMode::kSInt).IsNumber()); in TEST_F() 56 EXPECT_FALSE(Number(FormatMode::kSInt).IsList()); in TEST_F() 62 Number i(FormatMode::kSInt, 16); in TEST_F() 75 Number i(FormatMode::kSInt, 16); in TEST_F() 87 Number i(FormatMode::kSInt, 32); in TEST_F() 95 Number i(FormatMode::kSInt, 32); in TEST_F() 104 Number i(FormatMode::kSInt, 32); in TEST_F() 115 Number n4(FormatMode::kSInt, 32); in TEST_F() [all …]
|
D | format_test.cc | 609 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 637 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 668 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 703 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 744 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 778 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 819 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 862 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 911 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() 956 EXPECT_EQ(FormatMode::kSInt, segs[0].GetFormatMode()); in TEST_F() [all …]
|
D | type_parser.cc | 73 mode_ = FormatMode::kSInt; in Parse() 119 mode_ = FormatMode::kSInt; in ProcessChunk() 466 mode = type.is_signed ? FormatMode::kSInt : FormatMode::kUInt; in ParseGlslFormat() 507 if (mode == FormatMode::kSInt) in ParseGlslFormat()
|
D | type.h | 39 return mode == FormatMode::kSInt || mode == FormatMode::kSNorm || in IsSignedInt() 167 FormatMode format_mode_ = FormatMode::kSInt; 181 FormatMode mode = FormatMode::kSInt;
|
D | type_parser.h | 57 FormatMode mode_ = FormatMode::kSInt;
|
D | type.cc | 55 return MakeUnique<Number>(FormatMode::kSInt, bits); in Int()
|
D | format_data.h | 33 kSInt, enumerator
|
D | format.h | 71 FormatMode mode_ = FormatMode::kSInt;
|
D | format.cc | 34 case FormatMode::kSInt: in FormatModeToName()
|
/external/deqp-deps/amber/src/vkscript/ |
D | datum_type_parser_test.cc | 79 testing::Values(DatumTypeData{"int", FormatMode::kSInt, 32, 1, 1}, 81 DatumTypeData{"int8_t", FormatMode::kSInt, 8, 1, 1}, 83 DatumTypeData{"int16_t", FormatMode::kSInt, 16, 1, 1}, 85 DatumTypeData{"int64_t", FormatMode::kSInt, 64, 1, 1}, 95 DatumTypeData{"ivec2", FormatMode::kSInt, 32, 1, 2}, 96 DatumTypeData{"ivec3", FormatMode::kSInt, 32, 1, 3}, 97 DatumTypeData{"ivec4", FormatMode::kSInt, 32, 1, 4}, 101 DatumTypeData{"i8vec2", FormatMode::kSInt, 8, 1, 2}, 102 DatumTypeData{"i8vec3", FormatMode::kSInt, 8, 1, 3}, 103 DatumTypeData{"i8vec4", FormatMode::kSInt, 8, 1, 4}, [all …]
|
D | datum_type_parser.cc | 57 mode = FormatMode::kSInt; in Parse() 93 else if (mode == FormatMode::kSInt) in Parse()
|
D | parser_test.cc | 384 EXPECT_EQ(FormatMode::kSInt, segs2[0].GetFormatMode()); in TEST_F() 385 EXPECT_EQ(FormatMode::kSInt, segs2[1].GetFormatMode()); in TEST_F() 386 EXPECT_EQ(FormatMode::kSInt, segs2[2].GetFormatMode()); in TEST_F()
|
/external/deqp-deps/amber/src/amberscript/ |
D | parser_buffer_test.cc | 666 EXPECT_EQ(segs[i].GetFormatMode(), FormatMode::kSInt); in TEST_F() 822 BufferData{"int8", FormatMode::kSInt, 8, 1, 1, false}, 823 BufferData{"int16", FormatMode::kSInt, 16, 1, 1, false}, 824 BufferData{"int32", FormatMode::kSInt, 32, 1, 1, false}, 825 BufferData{"int64", FormatMode::kSInt, 64, 1, 1, false}, 832 BufferData{"vec2<int8>", FormatMode::kSInt, 8, 2, 1, false}, 835 BufferData{"mat2x4<int32>", FormatMode::kSInt, 32, 4, 2, false}, 845 BufferData{"int8[]", FormatMode::kSInt, 8, 1, 1, true}, 846 BufferData{"int16[]", FormatMode::kSInt, 16, 1, 1, true}, 847 BufferData{"int32[]", FormatMode::kSInt, 32, 1, 1, true}, [all …]
|