Lines Matching refs:group
141 return p->current->group;
192 p->current->group = 0;
196 p->current->group = 8;
202 p->current->group = 0;
216 * the currently selected channel enable group untouched.
227 /* The channel group and compression controls are non-orthogonal, there
230 * channel group inadvertently.
248 * [group, group + exec_size) to the instruction passed as argument.
252 brw_inst *inst, unsigned group)
255 assert(group % 4 == 0 && group < 32);
256 brw_inst_set_qtr_control(devinfo, inst, group / 8);
257 brw_inst_set_nib_control(devinfo, inst, (group / 4) % 2);
260 assert(group % 8 == 0 && group < 32);
261 brw_inst_set_qtr_control(devinfo, inst, group / 8);
264 assert(group % 8 == 0 && group < 16);
265 /* The channel group and compression controls are non-orthogonal, there
266 * are two possible representations for group zero and we may need to
270 if (group == 8)
278 brw_set_default_group(struct brw_codegen *p, unsigned group)
280 p->current->group = group;