/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_reg.h | 75 #define BRW_SWIZZLE4(a,b,c,d) (((a)<<0) | ((b)<<2) | ((c)<<4) | ((d)<<6)) macro 78 #define BRW_SWIZZLE_NOOP BRW_SWIZZLE4(0,1,2,3) 79 #define BRW_SWIZZLE_XYZW BRW_SWIZZLE4(0,1,2,3) 80 #define BRW_SWIZZLE_XXXX BRW_SWIZZLE4(0,0,0,0) 81 #define BRW_SWIZZLE_YYYY BRW_SWIZZLE4(1,1,1,1) 82 #define BRW_SWIZZLE_ZZZZ BRW_SWIZZLE4(2,2,2,2) 83 #define BRW_SWIZZLE_WWWW BRW_SWIZZLE4(3,3,3,3) 84 #define BRW_SWIZZLE_XYXY BRW_SWIZZLE4(0,1,0,1) 85 #define BRW_SWIZZLE_YXYX BRW_SWIZZLE4(1,0,1,0) 86 #define BRW_SWIZZLE_XZXZ BRW_SWIZZLE4( [all...] |
H A D | test_vec4_copy_propagation.cpp | 143 v->emit(v->MOV(b, swizzle(src_reg(a), BRW_SWIZZLE4(SWIZZLE_Y, in TEST_F() 149 v->MOV(c, swizzle(src_reg(b), BRW_SWIZZLE4(SWIZZLE_Y, in TEST_F() 158 EXPECT_EQ(test_mov->src[0].swizzle, BRW_SWIZZLE4(SWIZZLE_Z, in TEST_F() 170 v->emit(v->MOV(b, swizzle(src_reg(a), BRW_SWIZZLE4(SWIZZLE_X, in TEST_F() 178 v->MOV(c, swizzle(src_reg(b), BRW_SWIZZLE4(SWIZZLE_W, in TEST_F() 188 EXPECT_EQ(test_mov->src[0].swizzle, BRW_SWIZZLE4(SWIZZLE_W, in TEST_F()
|
H A D | brw_vec4_cmod_propagation.cpp | 225 scan_inst->src[0].swizzle = BRW_SWIZZLE4(src0_chan, in opt_cmod_propagation_local() 232 scan_inst->src[1].swizzle = BRW_SWIZZLE4(src1_chan, in opt_cmod_propagation_local()
|
H A D | brw_vec4_nir.cpp | 594 src.swizzle += BRW_SWIZZLE4(shift, shift, shift, shift); in nir_emit_intrinsic() 700 BRW_SWIZZLE4(load_offset % 16 / type_size, in nir_emit_intrinsic() 771 return BRW_SWIZZLE4(swizzle[0], swizzle[1], swizzle[2], swizzle[3]); in brw_swizzle_for_nir_swizzle() 2226 lod.swizzle = BRW_SWIZZLE4(SWIZZLE_X,SWIZZLE_X,SWIZZLE_Y,SWIZZLE_Y); 2227 lod2.swizzle = BRW_SWIZZLE4(SWIZZLE_X,SWIZZLE_X,SWIZZLE_Y,SWIZZLE_Y); 2284 swizzled.swizzle = BRW_SWIZZLE4(SWIZZLE_W, SWIZZLE_W,
|
H A D | brw_vec4.cpp | 2187 scalar_inst->src[i].swizzle = BRW_SWIZZLE4(swz, swz, swz, swz); in scalarize_df() 2299 hw_reg->swizzle = BRW_SWIZZLE4(swizzle0 * 2, swizzle0 * 2 + 1, in apply_logical_swizzle() 2340 hw_reg->swizzle = BRW_SWIZZLE4(swizzle0 * 2, swizzle0 * 2 + 1, in apply_logical_swizzle() 2362 mask.swizzle = BRW_SWIZZLE4((mask_param + 0) % 4, in run()
|
H A D | brw_vec4_copy_propagation.cpp | 121 BRW_SWIZZLE4(swz[0], swz[1], in get_copy_value()
|
H A D | test_vec4_cmod_propagation.cpp | 808 cmp_src.swizzle = BRW_SWIZZLE4(0,1,3,2); in TEST_F()
|
H A D | brw_vec4_visitor.cpp | 821 pos_w.swizzle = BRW_SWIZZLE4(SWIZZLE_W, SWIZZLE_W, SWIZZLE_W, SWIZZLE_W); in emit_ndc_computation()
|
H A D | brw_disasm.c | 1156 err |= src_swizzle(file, BRW_SWIZZLE4(swz_x, swz_y, swz_z, swz_w)); in src_da16()
|
H A D | brw_vec4_generator.cpp | 1419 reg.swizzle += BRW_SWIZZLE4(shift, shift, shift, shift); in generate_mov_indirect()
|
H A D | brw_fs_nir.cpp | 5530 brw_imm_ud(BRW_SWIZZLE4(1,0,3,2))); 5555 brw_imm_ud(BRW_SWIZZLE4(2,3,0,1))); 5576 brw_imm_ud(BRW_SWIZZLE4(3,2,1,0)));
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_program.c | 105 BRW_SWIZZLE4(0, 1, 2, 3), 106 BRW_SWIZZLE4(1, 2, 3, 3), 107 BRW_SWIZZLE4(2, 3, 3, 3), 108 BRW_SWIZZLE4(3, 3, 3, 3)
|
/third_party/mesa3d/src/intel/tools/ |
H A D | i965_gram.y | 2159 $$ = BRW_SWIZZLE4($2, $2, $2, $2); 2163 $$ = BRW_SWIZZLE4($2, $3, $4, $5);
|