Home
last modified time | relevance | path

Searched refs:first_component (Results 1 – 12 of 12) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
Dbrw_vec4_tcs.cpp159 unsigned first_component, in emit_input_urb_read() argument
186 src.swizzle = BRW_SWZ_COMP_INPUT(first_component); in emit_input_urb_read()
194 unsigned first_component, in emit_output_urb_read() argument
202 brw_imm_ud(dst.writemask << first_component), indirect_offset); in emit_output_urb_read()
210 if (first_component) { in emit_output_urb_read()
214 BRW_SWZ_COMP_INPUT(first_component)))); in emit_output_urb_read()
267 unsigned first_component = nir_intrinsic_component(instr); in nir_emit_intrinsic() local
271 first_component, indirect_offset); in nir_emit_intrinsic()
299 unsigned first_component = nir_intrinsic_component(instr); in nir_emit_intrinsic() local
300 if (first_component) { in nir_emit_intrinsic()
[all …]
Dbrw_vec4_tcs.h61 unsigned first_component,
65 unsigned first_component,
Dbrw_vec4_tes.cpp164 unsigned first_component = nir_intrinsic_component(instr); in nir_emit_intrinsic() local
187 src.swizzle = BRW_SWZ_COMP_INPUT(first_component); in nir_emit_intrinsic()
205 src.swizzle = BRW_SWZ_COMP_INPUT(first_component); in nir_emit_intrinsic()
Dbrw_fs_nir.cpp2504 unsigned first_component) in emit_gs_input_load() argument
2518 fs_reg(ATTR, imm_offset + i + first_component, dst.type)); in emit_gs_input_load()
2609 if (first_component != 0) { in emit_gs_input_load()
2610 unsigned read_components = num_components + first_component; in emit_gs_input_load()
2617 offset(tmp, bld, i + first_component)); in emit_gs_input_load()
2629 unsigned read_components = num_components + first_component; in emit_gs_input_load()
2633 if (first_component != 0) { in emit_gs_input_load()
2640 offset(tmp, bld, i + first_component)); in emit_gs_input_load()
2910 unsigned first_component = nir_intrinsic_component(instr); in nir_emit_tcs_intrinsic() local
2914 if (first_component != 0) { in nir_emit_tcs_intrinsic()
[all …]
Dbrw_reg.h1115 brw_writemask_for_component_packing(unsigned n, unsigned first_component) in brw_writemask_for_component_packing() argument
1117 assert(first_component + n <= 4); in brw_writemask_for_component_packing()
1118 return (((1 << n) - 1) << first_component); in brw_writemask_for_component_packing()
Dbrw_fs.h320 unsigned num_components, unsigned first_component);
644 uint32_t first_component,
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_wrmasks.c110 unsigned first_component = ffs(wrmask) - 1; in split_wrmask() local
111 unsigned length = ffs(~(wrmask >> first_component)) - 1; in split_wrmask()
119 unsigned cur_mask = (BITFIELD_MASK(length) << first_component); in split_wrmask()
136 align_off += offset_units * first_component; in split_wrmask()
146 unsigned offset_adj = offset_units * first_component; in split_wrmask()
/third_party/boost/libs/compute/test/
Dtest_lambda.cpp324 compute::vector<int> first_component(4, context); in BOOST_AUTO_TEST_CASE() local
328 first_component.begin(), in BOOST_AUTO_TEST_CASE()
332 CHECK_RANGE_EQUAL(int, 4, first_component, (1, 3, 5, 7)); in BOOST_AUTO_TEST_CASE()
339 first_component.begin(), in BOOST_AUTO_TEST_CASE()
343 CHECK_RANGE_EQUAL(int, 4, first_component, (2, 4, 6, 8)); in BOOST_AUTO_TEST_CASE()
358 compute::vector<int> first_component(4, context); in BOOST_AUTO_TEST_CASE() local
362 first_component.begin(), in BOOST_AUTO_TEST_CASE()
366 CHECK_RANGE_EQUAL(int, 4, first_component, (1, 3, 5, 7)); in BOOST_AUTO_TEST_CASE()
393 compute::vector<int> first_component(4, context); in BOOST_AUTO_TEST_CASE() local
397 first_component.begin(), in BOOST_AUTO_TEST_CASE()
[all …]
/third_party/mesa3d/src/broadcom/compiler/
Dnir_to_vir.c354 uint32_t first_component = ffs(*writemask) - 1; in emit_tmu_general_store_writes() local
355 uint32_t last_component = first_component; in emit_tmu_general_store_writes()
359 assert(first_component <= last_component && in emit_tmu_general_store_writes()
362 for (int i = first_component; i <= last_component; i++) { in emit_tmu_general_store_writes()
374 *const_offset = base_const_offset + first_component * 4; in emit_tmu_general_store_writes()
378 BITFIELD_RANGE(first_component, *tmu_writes); in emit_tmu_general_store_writes()
/third_party/mesa3d/src/compiler/glsl/
Dlink_varyings.cpp1295 const unsigned first_component = xfb_offset; in store() local
1297 const unsigned start_word = BITSET_BITWORD(first_component); in store()
1313 start_range = first_component % BITSET_WORDBITS; in store()
/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_compile.c1248 unsigned first_component = __builtin_ffs(ins.mask) - 1; in emit_global() local
1252 ins.swizzle[0][i] = first_component; in emit_global()
/third_party/mesa3d/docs/relnotes/
D21.1.0.rst2988 - broadcom/compiler: fix first_component assertion