Home
last modified time | relevance | path

Searched refs:chan (Results 251 - 275 of 333) sorted by relevance

1...<<11121314

/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_compute.c33 struct nouveau_object *chan = screen->base.channel; in nvc0_screen_compute_setup() local
51 ret = nouveau_object_new(chan, 0xbeef90c0, obj_class, NULL, 0, in nvc0_screen_compute_setup()
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_bc.h493 unsigned chan:2; member
501 chan = 0; in clear()
H A Dsb_expr.cpp294 unsigned chan = 0; in fold() local
298 if (n.bc.dst_sel[chan] == SEL_0) in fold()
300 else if (n.bc.dst_sel[chan] == SEL_1) in fold()
303 ++chan; in fold()
/third_party/mesa3d/src/intel/blorp/
H A Dblorp_blit.c897 nir_ssa_def *chan = nir_channel(b, color, c); in bit_cast_color() local
899 chan = nir_format_float_to_unorm(b, chan, &chan_bits); in bit_cast_color()
901 packed = nir_ior(b, packed, nir_shift_imm(b, chan, chan_start_bit)); in bit_cast_color()
960 enum isl_channel_select chan) in select_color_channel()
962 if (chan == ISL_CHANNEL_SELECT_ZERO) { in select_color_channel()
964 } else if (chan == ISL_CHANNEL_SELECT_ONE) { in select_color_channel()
975 assert((unsigned)(chan - ISL_CHANNEL_SELECT_RED) < 4); in select_color_channel()
976 return nir_channel(b, color, chan - ISL_CHANNEL_SELECT_RED); in select_color_channel()
958 select_color_channel(struct nir_builder *b, nir_ssa_def *color, nir_alu_type data_type, enum isl_channel_select chan) select_color_channel() argument
/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/src/
H A Dtrans_tcp_direct_message.c804 static void ReleaseSessionConn(SessionConn *chan) in ReleaseSessionConn() argument
806 if (chan == NULL) { in ReleaseSessionConn()
809 if (chan->appInfo.fastTransData != NULL) { in ReleaseSessionConn()
810 SoftBusFree((void*)chan->appInfo.fastTransData); in ReleaseSessionConn()
812 SoftBusFree(chan); in ReleaseSessionConn()
/third_party/ffmpeg/libavcodec/
H A Dwmaprodec.c706 WMAProChannelCtx* chan = &s->channel[c]; in decode_tilehdr() local
709 if (chan->num_subframes >= MAX_SUBFRAMES) { in decode_tilehdr()
714 chan->subframe_len[chan->num_subframes] = subframe_len; in decode_tilehdr()
716 ++chan->num_subframes; in decode_tilehdr()
H A Dwmalosslessdec.c385 WmallChannelCtx *chan = &s->channel[c]; in decode_tilehdr() local
388 if (chan->num_subframes >= MAX_SUBFRAMES) { in decode_tilehdr()
393 chan->subframe_len[chan->num_subframes] = subframe_len; in decode_tilehdr()
395 ++chan->num_subframes; in decode_tilehdr()
/third_party/alsa-lib/src/pcm/
H A Dpcm_multi.c827 snd_pcm_multi_channel_t *chan = &multi->channels[c]; in snd_pcm_multi_mmap() local
829 if (chan->slave_idx < 0) { in snd_pcm_multi_mmap()
833 slave = multi->slaves[chan->slave_idx].pcm; in snd_pcm_multi_mmap()
835 slave->mmap_channels[chan->slave_channel]; in snd_pcm_multi_mmap()
838 slave->running_areas[chan->slave_channel]; in snd_pcm_multi_mmap()
/third_party/libsnd/src/
H A Dwavlike.c497 { int chan, mask = 0, bit = -1, last_bit = -1 ; in wavlike_gen_channel_mask() local
502 for (chan = 0 ; chan < channels ; chan ++) in wavlike_gen_channel_mask()
506 if (chan_map [chan] == channel_mask_bits [k].id) in wavlike_gen_channel_mask()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4.cpp2178 for (unsigned chan = 0; chan < 4; chan++) { in scalarize_df()
2179 unsigned chan_mask = 1 << chan; in scalarize_df()
2186 unsigned swz = BRW_GET_SWZ(inst->src[i].swizzle, chan); in scalarize_df()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_read_image.cpp224 for (int32 chan = 0; chan < channels; ++chan) in DecodeDeltaBytes()
227 bytePtr [chan + channels] += bytePtr [chan]; in DecodeDeltaBytes()
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.h281 unsigned chan,
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dieee802_11_common.h174 int ieee80211_chan_to_freq(const char *country, u8 op_class, u8 chan);
/third_party/mesa3d/src/gallium/auxiliary/nir/
H A Dnir_to_tgsi.c1677 for (int chan = 0; chan < 2; chan++) { in ntt_emit_alu()
1678 int wm = 1 << chan; in ntt_emit_alu()
1691 chan * 2, chan * 2 + 1, in ntt_emit_alu()
1692 chan * 2, chan * 2 + 1); in ntt_emit_alu()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dhostapd.c1672 struct hostapd_channel_data *chan = &mode->channels[i]; in configured_fixed_chan_to_freq() local
1674 if (chan->chan == iface->conf->channel && in configured_fixed_chan_to_freq()
1675 !is_6ghz_freq(chan->freq)) { in configured_fixed_chan_to_freq()
1676 iface->freq = chan->freq; in configured_fixed_chan_to_freq()
3590 u8 chan, bandwidth; in hostapd_fill_csa_settings() local
3616 &chan) == NUM_HOSTAPD_MODES) { in hostapd_fill_csa_settings()
3626 settings->freq_params.channel = chan; in hostapd_fill_csa_settings()
/third_party/ffmpeg/libavfilter/
H A Daf_astats.c380 static void set_meta(AVDictionary **metadata, int chan, const char *key, in set_meta() argument
387 if (chan) in set_meta()
388 snprintf(key2, sizeof(key2), "lavfi.astats.%d.%s", chan, key); in set_meta()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_shader.cpp918 if (value[i]->chan() < 4) { in emit_store_scratch()
1272 bool Shader::emit_simple_mov(nir_dest& dest, int chan, PVirtualValue src, Pin pin) in emit_simple_mov() argument
1274 auto dst = value_factory().dest(dest, chan, pin); in emit_simple_mov()
/third_party/mesa3d/src/gallium/drivers/v3d/
H A Dv3dx_state.c1087 int chan = util_format_get_first_non_void_channel(sample_format); in v3d_create_sampler_view() local
1089 switch (desc->channel[chan].size) { in v3d_create_sampler_view()
1104 switch (desc->channel[chan].size) { in v3d_create_sampler_view()
H A Dv3dx_emit.c86 int chan) in swizzled_border_color()
90 uint8_t swiz = chan; in swizzled_border_color()
83 swizzled_border_color(const struct v3d_device_info *devinfo, struct pipe_sampler_state *sampler, struct v3d_sampler_view *sview, int chan) swizzled_border_color() argument
/third_party/pulseaudio/src/modules/bluetooth/
H A Dbackend-native.c546 dbus_uint16_t version, chan; in register_profile() local
567 chan = HSP_HS_DEFAULT_CHANNEL; in register_profile()
568 pa_dbus_append_basic_variant_dict_entry(&d, "Channel", DBUS_TYPE_UINT16, &chan); in register_profile()
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_from_tgsi.cpp95 int getSwizzle(int chan) const in getSwizzle()
97 return tgsi_util_get_src_register_swizzle(&reg, chan); in getSwizzle()
107 nv50_ir::Modifier getMod(int chan) const;
156 bool isMasked(int chan) const { return !(getMask() & (1 << chan)); } in isMasked()
405 nv50_ir::Modifier Instruction::SrcRegister::getMod(int chan) const in getMod()
2191 #define FOR_EACH_DST_ENABLED_CHANNEL(d, chan, inst) \
2192 for (chan = 0; chan < 4; ++chan) \
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_program.c185 ntq_store_dest(struct vc4_compile *c, nir_dest *dest, int chan, in ntq_store_dest() argument
197 assert(chan < dest->ssa.num_components); in ntq_store_dest()
208 qregs[chan] = result; in ntq_store_dest()
227 last_inst->dst.index = qregs[chan].index; in ntq_store_dest()
233 last_inst->dst.index = qregs[chan].index; in ntq_store_dest()
273 unsigned chan = ffs(instr->dest.write_mask) - 1; in ntq_get_alu_src() local
275 instr->src[src].swizzle[chan]); in ntq_get_alu_src()
/third_party/node/test/fixtures/wpt/resources/
H A Dtestharness.js3851 var chan = new MessageChannel();
3853 chan.port1.postMessage(JSON.parse(msg_json));
3855 var done = tests.fetch_tests_from_worker(chan.port2);
3857 chan.port2.start();
/third_party/openSLES/api/1.1/
H A DOpenSLES.h2132 SLuint8 chan,
2137 SLuint8 chan,
2142 SLuint8 chan,
2147 SLuint8 chan,
/third_party/openSLES/api/1.0.1/
H A DOpenSLES.h1932 SLuint8 chan,
1937 SLuint8 chan,
1942 SLuint8 chan,
1947 SLuint8 chan,

Completed in 74 milliseconds

1...<<11121314