Searched refs:num_comp (Results 1 - 6 of 6) sorted by relevance
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_opt_copy_propagate.c | 38 unsigned num_comp = instr->dest.dest.ssa.num_components; local in function:is_swizzleless_move 40 if (instr->src[0].src.ssa->num_components != num_comp) 44 for (unsigned i = 0; i < num_comp; i++) { 49 for (unsigned i = 0; i < num_comp; i++) { 69 unsigned num_comp = mov->dest.dest.ssa.num_components; local in function:rewrite_to_vec 70 nir_alu_instr *new_vec = nir_alu_instr_create(b.shader, nir_op_vec(num_comp)); 71 for (unsigned i = 0; i < num_comp; i++) 90 unsigned num_comp = nir_ssa_alu_instr_src_components(user, src_idx); local in function:copy_propagate_alu 95 for (unsigned i = 0; i < num_comp; i++) 100 for (unsigned i = 1; i < num_comp; [all...] |
| H A D | nir_lower_wrmasks.c | 106 unsigned num_comp = nir_intrinsic_src_components(intr, value_idx); local in function:split_wrmask 113 nir_ssa_def *value = nir_ssa_for_src(b, intr->src[value_idx], num_comp);
|
| H A D | nir_opt_phi_precision.c | 415 unsigned num_comp = nir_dest_num_components(alu->dest.dest); local in function:try_move_widening_src 416 new_src = nir_mov_alu(b, alu->src[0], num_comp);
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/ |
| H A D | midgard_print.c | 123 unsigned num_comp = util_bitcount(comp_mask); local in function:mir_print_embedded_constant 129 if (num_comp > 1) 130 printf("vec%d(", num_comp); 146 if (num_comp > 1)
|
| H A D | disassemble.c | 558 unsigned comp_mask, num_comp = 0; local in function:print_vector_constants 564 num_comp = util_bitcount(comp_mask); 637 if (num_comp > 1) 855 unsigned num_comp = util_bitcount(comp_mask); local in function:print_vector_field 856 if (num_comp != 1)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/ |
| H A D | sfn_nir_lower_fs_out_to_vector.cpp | 108 int first_comp, int num_comp); 433 int first_comp, int num_comp) 436 switch (num_comp) { 448 while (i < num_comp) { 450 for(uint8_t kk = 0; kk < s->num_components && i < num_comp; ++kk) { 458 nir_ssa_dest_init(&instr->instr, &instr->dest.dest, num_comp, 32, NULL); 459 instr->dest.write_mask = (1 << num_comp) - 1; 432 create_combined_vector(nir_builder * b,nir_ssa_def ** srcs,int first_comp,int num_comp) argument
|
Completed in 11 milliseconds