Lines Matching defs:move
1166 } move[] = {
1193 for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
1194 brw_MOV(p, retype(g0, move[i].dst_type), retype(g0, move[i].src_type));
1195 brw_inst_set_src0_negate(&devinfo, last_inst, move[i].neg);
1196 brw_inst_set_src0_abs(&devinfo, last_inst, move[i].abs);
1197 brw_inst_set_saturate(&devinfo, last_inst, move[i].sat);
1199 EXPECT_EQ(move[i].expected_result, validate(p));
2069 } move[] = {
2083 for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
2086 move[i].src_type == BRW_REGISTER_TYPE_UV)
2089 brw_MOV(p, retype(g0, move[i].dst_type), retype(zero, move[i].src_type));
2090 brw_inst_set_dst_da1_subreg_nr(&devinfo, last_inst, move[i].subnr);
2091 brw_inst_set_exec_size(&devinfo, last_inst, move[i].exec_size);
2093 EXPECT_EQ(move[i].expected_result, validate(p));
2106 } move[] = {
2125 for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
2128 move[i].src_type == BRW_REGISTER_TYPE_UV)
2131 brw_MOV(p, retype(g0, move[i].dst_type), retype(zero, move[i].src_type));
2132 brw_inst_set_dst_hstride(&devinfo, last_inst, move[i].stride);
2134 EXPECT_EQ(move[i].expected_result, validate(p));