Lines Matching defs:dst
146 const struct tgsi_full_dst_register *dst )
148 ENM(dst->Register.File, tgsi_file_names);
149 if (dst->Register.Dimension) {
150 if (dst->Dimension.Indirect) {
152 ENM( dst->DimIndirect.File, tgsi_file_names );
154 SID( dst->DimIndirect.Index );
156 ENM( dst->DimIndirect.SwizzleX, tgsi_swizzle_names );
157 if (dst->Dimension.Index != 0) {
158 if (dst->Dimension.Index > 0)
160 SID( dst->Dimension.Index );
165 SID(dst->Dimension.Index);
169 if (dst->Register.Indirect) {
171 ENM( dst->Indirect.File, tgsi_file_names );
173 SID( dst->Indirect.Index );
175 ENM( dst->Indirect.SwizzleX, tgsi_swizzle_names );
176 if (dst->Register.Index != 0) {
177 if (dst->Register.Index > 0)
179 SID( dst->Register.Index );
184 SID( dst->Register.Index );
539 const struct tgsi_full_dst_register *dst = &inst->Dst[i];
545 _dump_register_dst( ctx, dst );
546 _dump_writemask( ctx, dst->Register.WriteMask );