/external/mesa3d/src/gallium/drivers/svga/svgadump/ |
svga_shader_op.h | 39 unsigned num_dst:8; member in struct:sh_opcode_info
|
svga_shader_dump.c | 480 uint num_dst, 485 assert(num_dst <= 1); 491 if (num_dst >= 1) { 528 assert(info->num_dst <= 1); 536 parse_op(di, assem, &dop, info->num_dst, info->num_src); 537 if (info->num_dst > 0) {
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_info.h | 74 unsigned num_dst:3; member in struct:tgsi_opcode_info
|
tgsi_text.c | 920 if (info->num_dst + info->num_src + info->is_tex == 0) { 940 inst.Instruction.NumDstRegs = info->num_dst; 945 for (i = 0; i < info->num_dst + info->num_src + info->is_tex; i++) { 956 if (i < info->num_dst) { 960 else if (i < info->num_dst + info->num_src) { 961 if (!parse_src_operand( ctx, &inst.Src[i - info->num_dst] )) [all...] |
tgsi_sanity.c | 330 if (info->num_dst != inst->Instruction.NumDstRegs) { 331 report_error( ctx, "%s: Invalid number of destination operands, should be %u", info->mnemonic, info->num_dst );
|
tgsi_ureg.c | 935 assert(nr_dst == info->num_dst); 951 unsigned num_dst, 958 validate( opcode, num_dst, num_src ); 964 out[0].insn.NumDstRegs = num_dst; [all...] |
tgsi_ureg.h | 516 unsigned num_dst, [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_swizzle.c | 572 unsigned num_dst = dst_type.length; local 575 assert(num_src <= num_dst); 580 for (i = num_src; i < num_dst; i++) { 584 if (num_dst == 1) { 589 LLVMConstVector(shuffles, num_dst), ""); 606 unsigned num_dst = dst_type.length; local 610 assert(num_dst / 4 <= src_type.length); 625 LLVMConstVector(shuffles, num_dst), "");
|
lp_bld_tgsi.c | 231 assert(info->num_dst <= 1); 232 if (info->num_dst) { 274 if (info->num_dst > 0) {
|
lp_bld_tgsi_aos.c | 477 assert(info->num_dst <= 1); 478 if (info->num_dst) { 974 if (info->num_dst) {
|
lp_bld_tgsi_soa.c | [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_mesa_to_tgsi.c | 679 unsigned num_dst; local 682 num_dst = _mesa_num_inst_dst_regs( inst->Opcode ); 685 if (num_dst) 704 debug_assert(num_dst == 0); 719 dst, num_dst, 730 dst, num_dst, 738 dst, num_dst, 762 dst, num_dst, [all...] |
st_glsl_to_tgsi.cpp | 478 return info->num_dst; [all...] |