Home
last modified time | relevance | path

Searched refs:src0_type (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
Dbrw_eu_validate.c614 enum brw_reg_type src0_type = brw_inst_src0_type(devinfo, inst); in is_half_float_conversion() local
616 if (dst_type != src0_type && in is_half_float_conversion()
617 (dst_type == BRW_REGISTER_TYPE_HF || src0_type == BRW_REGISTER_TYPE_HF)) { in is_half_float_conversion()
651 enum brw_reg_type src0_type = brw_inst_src0_type(devinfo, inst); in is_mixed_float() local
654 return types_are_mixed_float(src0_type, dst_type); in is_mixed_float()
658 return types_are_mixed_float(src0_type, src1_type) || in is_mixed_float()
659 types_are_mixed_float(src0_type, dst_type) || in is_mixed_float()
674 enum brw_reg_type src0_type = brw_inst_src0_type(devinfo, inst); in is_byte_conversion() local
676 if (dst_type != src0_type && in is_byte_conversion()
677 (type_sz(dst_type) == 1 || type_sz(src0_type) == 1)) { in is_byte_conversion()
[all …]
Dtest_eu_validate.cpp1432 enum brw_reg_type src0_type; in TEST_P() member
1439 #define INST(dst_type, src0_type, src1_type, \ in TEST_P() argument
1443 BRW_REGISTER_TYPE_##src0_type, \ in TEST_P()
1478 retype(g0, inst[i].src0_type), in TEST_P()
1496 enum brw_reg_type src0_type; in TEST_P() member
1501 #define INST(exec_size, dst_type, src0_type, src1_type, \ in TEST_P() argument
1506 BRW_REGISTER_TYPE_##src0_type, \ in TEST_P()
1532 retype(g0, inst[i].src0_type), in TEST_P()
1549 enum brw_reg_type src0_type; in TEST_P() member
1557 #define INST(dst_type, src0_type, src1_type, dst_stride, read_acc, subnr, \ in TEST_P() argument
[all …]
/third_party/mesa3d/src/panfrost/lib/
Dpan_blend.h75 nir_alu_type src0_type, src1_type; member
163 nir_alu_type src0_type,
180 nir_alu_type src0_type,
Dpan_blend.c517 nir_alu_type src0_type, in GENX()
572 nir_alu_type src_types[] = { src0_type ?: nir_type_float32, src1_type ?: nir_type_float32 }; in GENX()
682 nir_alu_type src0_type, in GENX()
688 .src0_type = src0_type, in GENX()
732 GENX(pan_blend_create_shader)(dev, state, src0_type, src1_type, rt); in GENX()