/external/mesa3d/src/intel/compiler/ |
D | test_vec4_copy_propagation.cpp | 134 SWIZZLE_W, in TEST_F() 140 SWIZZLE_W, in TEST_F() 148 SWIZZLE_W, in TEST_F() 167 v->MOV(c, swizzle(src_reg(b), BRW_SWIZZLE4(SWIZZLE_W, in TEST_F() 168 SWIZZLE_W, in TEST_F() 169 SWIZZLE_W, in TEST_F() 170 SWIZZLE_W))); in TEST_F() 177 EXPECT_EQ(test_mov->src[0].swizzle, BRW_SWIZZLE4(SWIZZLE_W, in TEST_F() 178 SWIZZLE_W, in TEST_F() 179 SWIZZLE_W, in TEST_F() [all …]
|
D | brw_vec4_visitor.cpp | 1105 swizzled.swizzle = BRW_SWIZZLE4(SWIZZLE_W, SWIZZLE_W, in emit_texture() 1106 SWIZZLE_W, SWIZZLE_W); in emit_texture() 1168 pos_w.swizzle = BRW_SWIZZLE4(SWIZZLE_W, SWIZZLE_W, SWIZZLE_W, SWIZZLE_W); in emit_ndc_computation()
|
/external/mesa3d/src/mesa/program/ |
D | prog_instruction.h | 52 #define SWIZZLE_W 3 macro 65 #define SWIZZLE_XYZW MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W) 69 #define SWIZZLE_WWWW MAKE_SWIZZLE4(SWIZZLE_W, SWIZZLE_W, SWIZZLE_W, SWIZZLE_W)
|
D | prog_optimize.c | 108 if (channel_mask & (1 << comp) && coord <= SWIZZLE_W) in get_src_arg_mask() 150 return GET_SWZ(swz,0) <= SWIZZLE_W && in is_swizzle_regular() 151 GET_SWZ(swz,1) <= SWIZZLE_W && in is_swizzle_regular() 152 GET_SWZ(swz,2) <= SWIZZLE_W && in is_swizzle_regular() 153 GET_SWZ(swz,3) <= SWIZZLE_W; in is_swizzle_regular() 278 if (swz <= SWIZZLE_W) { in _mesa_remove_dead_code_global()
|
D | prog_parameter_layout.c | 47 swiz |= ((s <= SWIZZLE_W) ? GET_SWZ(base, s) : s) << (i * 3); in _mesa_combine_swizzles()
|
D | prog_instruction.c | 229 if (swizzle <= SWIZZLE_W && in _mesa_check_soa_dependencies()
|
D | program_lexer.l | 115 return SWIZZLE_W; in swiz_from_char()
|
D | program_parse.y | 694 $$.swz = SWIZZLE_W; 711 $$.swz = SWIZZLE_W;
|
/external/mesa3d/src/mesa/main/ |
D | format_parser.py | 134 SWIZZLE_W = 3 variable in Swizzle 175 if idx <= Swizzle.SWIZZLE_W: 452 return self.swizzle['a'] <= Swizzle.SWIZZLE_W 456 return self.swizzle[name] <= Swizzle.SWIZZLE_W
|
D | formats.h | 130 SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W) ( \ argument 139 (((SWIZZLE_W) << 17) & MESA_ARRAY_FORMAT_SWIZZLE_W_MASK) | \
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_vertprog.c | 51 SWIZZLE_W != VSF_IN_COMPONENT_W || \ 602 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { in r200_translate_vertex_program() 603 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); in r200_translate_vertex_program() 611 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { in r200_translate_vertex_program() 612 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); in r200_translate_vertex_program() 620 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { in r200_translate_vertex_program() 621 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); in r200_translate_vertex_program() 626 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); in r200_translate_vertex_program() 642 SWIZZLE_Z, SWIZZLE_W, in r200_translate_vertex_program() 664 SWIZZLE_Z, SWIZZLE_W, in r200_translate_vertex_program()
|
/external/mesa3d/src/compiler/glsl/ |
D | opt_vectorize.cpp | 229 case WRITEMASK_W: return SWIZZLE_W; in write_mask_to_swizzle() 244 (write_mask == WRITEMASK_W && swz->mask.x == SWIZZLE_W)); in write_mask_matches_swizzle()
|
D | lower_packed_varyings.cpp | 311 #define SWIZZLE_ZWZW MAKE_SWIZZLE4(SWIZZLE_Z, SWIZZLE_W, SWIZZLE_Z, SWIZZLE_W)
|
D | builtin_int64.h | 935 …ir_swizzle *const r00C0 = swizzle(r00BF, MAKE_SWIZZLE4(SWIZZLE_Z, SWIZZLE_W, SWIZZLE_X, SWIZZLE_X)… in umod64() 1173 …ir_swizzle *const r00F7 = swizzle(r00F4, MAKE_SWIZZLE4(SWIZZLE_Z, SWIZZLE_W, SWIZZLE_X, SWIZZLE_X)… in imod64() 1183 …ir_swizzle *const r00FB = swizzle(r00F4, MAKE_SWIZZLE4(SWIZZLE_Z, SWIZZLE_W, SWIZZLE_X, SWIZZLE_X)… in imod64()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_sampler_view.c | 264 case SWIZZLE_W: in swizzle_swizzle() 317 SWIZZLE_ZERO, SWIZZLE_W); in compute_texture_format_swizzle() 321 return MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_X, SWIZZLE_X, SWIZZLE_W); in compute_texture_format_swizzle()
|
D | st_nir_lower_builtin.c | 206 assert(swiz[i] <= SWIZZLE_W); in lower_builtin_block()
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_format_table.py | 76 SWIZZLE_W: "UTIL_FORMAT_SWIZZLE_W",
|
D | u_format_parse.py | 35 SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W, SWIZZLE_0, SWIZZLE_1, SWIZZLE_NONE, = range(7) variable 261 'w': SWIZZLE_W,
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format_parse.py | 34 SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W, SWIZZLE_0, SWIZZLE_1, SWIZZLE_NONE, = range(7) variable 260 'w': SWIZZLE_W,
|
D | u_format_table.py | 74 SWIZZLE_W: "PIPE_SWIZZLE_W",
|
/external/mesa3d/src/amd/vulkan/ |
D | vk_format_table.py | 72 SWIZZLE_W: "VK_SWIZZLE_W",
|
D | vk_format_parse.py | 34 SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W, SWIZZLE_0, SWIZZLE_1, SWIZZLE_NONE, = range(7) variable 268 'w': SWIZZLE_W,
|
/external/mesa3d/src/mesa/swrast/ |
D | s_fragprog.c | 64 vector[SWIZZLE_W] = texel[3]; in swizzle_texel()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_wm_surface_state.c | 319 SWIZZLE_W, in brw_get_texture_swizzle() 394 swizzles[3] = SWIZZLE_W; in brw_get_texture_swizzle()
|
D | brw_wm.c | 349 if (src_comp == SWIZZLE_ONE || src_comp == SWIZZLE_W) { in brw_populate_sampler_prog_key_data()
|