HomeSort by: relevance | last modified time | path
    Searched defs:channels (Results 1 - 25 of 28) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/intel/isl/
gen_format_layout.py 80 .channels = {
195 # Iterate over all channels, not just those in self.order, because
199 for chan in self.channels:
220 def channels(self): member in class:Format
  /xsrc/external/mit/xf86-video-vboxvideo/dist/src/
HGSMIContext.h 71 HGSMICHANNELINFO channels; member in struct:HGSMIHOSTCOMMANDCONTEXT
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
opt_vectorize.cpp 28 * multiple channels of the same variable into a single vectorized expression
73 channels = 0;
97 unsigned channels; member in class:__anon750::ir_vectorize_visitor
179 if (this->last_assignment && this->channels > 1) {
180 ir_swizzle_mask mask = {0, 0, 0, 0, channels, 0};
261 this->channels >= 4 ||
382 this->channels++;
393 * multiple channels of the same variable into a single vectorized expression
opt_dead_code_local.cpp 63 /* bitmask of xyzw channels written that haven't been used so far. */
252 unsigned channels = 0; local
258 components[channels++] = next;
265 channels);
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_non_uniform_access.c 77 nir_ssa_def *channels[NIR_MAX_VEC_COMPONENTS]; local
79 channels[i] = nir_channel(b, handle->handle, i);
84 nir_ssa_def *first = nir_read_first_invocation(b, channels[i]);
87 equal_first = nir_iand(b, equal_first, nir_ieq(b, first, channels[i]));
nir_lower_ubo_vec4.c 159 nir_ssa_def *channels[NIR_MAX_VEC_COMPONENTS]; local
170 channels[i] = nir_vector_extract(b,
180 result = nir_vec(b, channels, intr->num_components);
nir_lower_blend.c 297 nir_ssa_def *channels[4]; local
319 channels[c] = nir_blend_func(b, chan.func, psrc, pdst);
322 return nir_vec(b, channels, 4);
  /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
bi_opt_push_ubo.c 77 unsigned channels = bi_opcode_props[ins->op].sr_count; local
80 assert(channels > 0 && channels <= 4);
87 range[word] = MAX2(range[word], channels);
166 unsigned channels = bi_opcode_props[ins->op].sr_count; local
168 for (unsigned w = 0; w < channels; ++w) {
bi_ra.c 451 unsigned channels = 0; local
472 channels = MAX2(channels, extra + count);
489 return (channels * 4);
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
opt_vectorize.cpp 28 * multiple channels of the same variable into a single vectorized expression
73 channels = 0;
97 unsigned channels; member in class:__anon3385::ir_vectorize_visitor
179 if (this->last_assignment && this->channels > 1) {
180 ir_swizzle_mask mask = {0, 0, 0, 0, channels, 0};
261 this->channels >= 4 ||
382 this->channels++;
393 * multiple channels of the same variable into a single vectorized expression
opt_dead_code_local.cpp 63 /* bitmask of xyzw channels written that haven't been used so far. */
250 unsigned channels = 0; local
256 components[channels++] = next;
263 channels);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
vc4_qir_live_variables.c 34 uint8_t channels; member in struct:partial_update_state
142 state->channels |= mask;
151 state->channels |= 1 << i;
157 if (state->channels == 0xf)
  /xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/
vir_live_variables.c 33 uint8_t channels; member in struct:partial_update_state
154 state->channels |= mask;
163 state->channels |= 1 << i;
170 if (state->channels == 0xf)
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
vc4_qir_live_variables.c 34 uint8_t channels; member in struct:partial_update_state
154 state->channels |= mask;
163 state->channels |= 1 << i;
169 if (state->channels == 0xf)
  /xsrc/external/mit/MesaLib/dist/src/broadcom/simulator/
v3dx_simulator.c 524 uint32_t channels = 0; local
526 channels |= events[i + j] << V3D_PCTR_0_SRC_N_SHIFT(j);
527 V3D_WRITE(V3D_PCTR_0_SRC_N(source), channels); local
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
sfn_nir_vectorize_vs_inputs.c 143 unsigned channels[4]; local
167 channels[i] = comp - var->data.location_frac + i;
168 nir_ssa_def *load = nir_swizzle(b, &new_intr->dest.ssa, channels, old_num_comps);
  /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
mir.c 207 unsigned channels = mir_components_for_bits(bits); local
209 for (unsigned c = 0; c < channels; ++c) {
  /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/
agx_pack.c 420 unsigned channels = (I->channels & 0x3); local
433 (((uint64_t) channels) << 30) |
agx_compile.c 186 agx_index channels[4] = { zero, zero, zero, one }; local
188 channels[i] = agx_p_extract(b, dest, i);
190 channels[i] = agx_null();
191 agx_p_combine_to(b, real_dest, channels[0], channels[1], channels[2], channels[3]);
211 /* vec3 for each vertex, unknown what first 2 channels are for */
1340 unsigned channels = comps[loc]; local
1353 cfg.components = channels;
    [all...]
agx_compiler.h 283 uint32_t channels; member in union:__anon609::__anon610
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_shader_tgsi_mem.c 373 LLVMValueRef channels[4], ptr, derived_ptr, index; local
380 channels[chan] = LLVMGetUndef(ctx->f32);
386 channels[chan] = LLVMBuildLoad(ctx->ac.builder, derived_ptr, "");
388 emit_data->output[emit_data->chan] = ac_build_gather_values(&ctx->ac, channels, 4);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/nir/
nir_to_tgsi.c 721 /* Reswizzles a source so that the unset channels in the write mask still refer
722 * to one of the channels present in the write mask.
977 * channels and will need to get fixed up.
1035 * replicated to all dst channels" behavior, while 64 is normal mapping
1036 * of src channels to dst.
1836 /* virglrenderer doesn't like references to channels of the sysval that
2668 nir_ssa_def *channels[4] = { local
2674 nir_ssa_def *new = nir_vec(b, channels, instr->num_components);
2681 nir_ssa_def *channels[4] = { 0 }; local
2683 channels[i] = nir_channel(b, src0, i)
2760 nir_ssa_def *channels[4] = { local
2799 nir_ssa_def *channels[8]; member in struct:ntt_lower_tex_state
    [all...]
  /xsrc/external/mit/xf86-video-intel-old/dist/src/
i830_debug.c 427 char *channels; local
434 channels = "2 channels";
436 channels = "1 channel";
440 enable, pipe, depth, channels);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_state_fs.c 656 * @param dst_channels number of output channels
797 * r0r1r4r5r2r3r6r7r8r9r12... (albeit color channels may
863 * Note that if we only really have 3 valid channels (rgb)
1670 unsigned channels = pad_inline ? TGSI_NUM_CHANNELS : dst_channels; local
1679 /* Broadcast alpha across all channels, e.g. a1a2 to a1a1a1a1a2a2a2a2 */
1681 if (j < pixels * channels) {
1682 shuffles[j] = lp_build_const_int32(gallivm, j / channels);
1824 /* Compute correct swizzle and count channels */
1839 /* Ensure we havn't already found all channels */
1867 /* If 3 channels then pad to include alpha for 4 element transpose *
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_state_fs.c 1286 * @param dst_channels number of output channels
1427 * r0r1r4r5r2r3r6r7r8r9r12... (albeit color channels may
1493 * Note that if we only really have 3 valid channels (rgb)
2254 unsigned channels = pad_inline ? TGSI_NUM_CHANNELS : dst_channels; local
2263 /* Broadcast alpha across all channels, e.g. a1a2 to a1a1a1a1a2a2a2a2 */
2265 if (j < pixels * channels) {
2266 shuffles[j] = lp_build_const_int32(gallivm, j / channels);
2408 /* Compute correct swizzle and count channels */
2423 /* Ensure we haven't already found all channels */
2451 /* If 3 channels then pad to include alpha for 4 element transpose *
    [all...]

Completed in 37 milliseconds

1 2