Lines Matching defs:inst
1044 struct tgsi_full_instruction inst;
1048 inst = tgsi_default_full_instruction();
1076 inst.Instruction.Opcode = i;
1077 inst.Instruction.Saturate = saturate;
1078 inst.Instruction.Precise = precise;
1079 inst.Instruction.NumDstRegs = info->num_dst;
1080 inst.Instruction.NumSrcRegs = info->num_src;
1088 inst.Instruction.Texture = 1;
1089 inst.Texture.Texture = TGSI_TEXTURE_UNKNOWN;
1094 inst.Instruction.Memory = 1;
1095 inst.Memory.Qualifier = 0;
1115 if (!parse_dst_operand( ctx, &inst.Dst[i] ))
1119 if (!parse_src_operand( ctx, &inst.Src[i - info->num_dst] ))
1127 inst.Instruction.Texture = 1;
1128 inst.Texture.Texture = j;
1141 for (i = 0; inst.Instruction.Texture && *cur == ',' && i < TGSI_FULL_MAX_TEX_OFFSETS; i++) {
1145 if (!parse_texoffset_operand( ctx, &inst.TexOffsets[i] ))
1150 inst.Texture.NumOffsets = i;
1155 for (; inst.Instruction.Memory && *cur == ',';
1165 inst.Memory.Qualifier |= 1U << j;
1172 inst.Memory.Texture = j;
1178 inst.Memory.Format = j;
1198 inst.Instruction.Label = 1;
1199 inst.Label.Label = target;
1204 &inst,