Home
last modified time | relevance | path

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

/external/mesa3d/src/intel/compiler/
Dbrw_eu_validate.c611 enum brw_reg_type src0_type = brw_inst_src0_type(devinfo, inst); in is_half_float_conversion() local
613 if (dst_type != src0_type && in is_half_float_conversion()
614 (dst_type == BRW_REGISTER_TYPE_HF || src0_type == BRW_REGISTER_TYPE_HF)) { in is_half_float_conversion()
648 enum brw_reg_type src0_type = brw_inst_src0_type(devinfo, inst); in is_mixed_float() local
651 return types_are_mixed_float(src0_type, dst_type); in is_mixed_float()
655 return types_are_mixed_float(src0_type, src1_type) || in is_mixed_float()
656 types_are_mixed_float(src0_type, dst_type) || in is_mixed_float()
671 enum brw_reg_type src0_type = brw_inst_src0_type(devinfo, inst); in is_byte_conversion() local
673 if (dst_type != src0_type && in is_byte_conversion()
674 (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 …]
/external/mesa3d/src/amd/llvm/
Dac_nir_to_llvm.c138 LLVMTypeRef src0_type = LLVMTypeOf(src0); in emit_int_cmp() local
141 if (LLVMGetTypeKind(src0_type) == LLVMPointerTypeKind && in emit_int_cmp()
143 src1 = LLVMBuildIntToPtr(ctx->builder, src1, src0_type, ""); in emit_int_cmp()
145 LLVMGetTypeKind(src0_type) != LLVMPointerTypeKind) { in emit_int_cmp()