Searched refs:streams (Results 1 - 25 of 215) sorted by relevance

123456789

/linux-master/tools/testing/selftests/net/forwarding/
H A Dsch_ets.sh39 local -a streams=("$@")
42 for stream in ${streams[@]}; do
H A Dsch_ets_tests.sh5 # collect_stats($streams...) -- A function to get stats for individual streams
80 local -a streams=("$@")
82 local low_stream=${streams[0]}
89 echo "Testing $(qdisc_describe), streams ${streams[@]}"
91 for stream in ${streams[@]}; do
97 t0=($(collect_stats "${streams[@]}"))
101 t1=($(collect_stats "${streams[@]}"))
102 d=($(for ((i = 0; i < ${#streams[
[all...]
/linux-master/drivers/staging/greybus/
H A Dgb-camera.h60 * capture. The caller specifies the number of streams it
62 * streams configurations in the 'streams' argument. The
67 * using a different number of streams. In that case the
71 * streams stored in 'streams' and 'array'. The module
77 * The 'streams' argument specifies which streams are affected by the
79 * configured streams indexes. If the request contains settings, the
92 unsigned int *flags, struct gb_camera_stream *streams,
[all...]
H A Dcamera.c268 * set and the returned number of streams is supported
283 gcam_err(gcam, "got #streams %u > request %u\n",
523 struct gb_camera_stream_config *streams,
555 cfg->width = cpu_to_le16(streams[i].width);
556 cfg->height = cpu_to_le16(streams[i].height);
557 cfg->format = cpu_to_le16(streams[i].format);
591 streams[i].width = le16_to_cpu(cfg->width);
592 streams[i].height = le16_to_cpu(cfg->height);
593 streams[i].format = le16_to_cpu(cfg->format);
594 streams[
520 gb_camera_configure_streams(struct gb_camera *gcam, unsigned int *num_streams, unsigned int *flags, struct gb_camera_stream_config *streams, struct gb_camera_csi_params *csi_params) argument
653 gb_camera_capture(struct gb_camera *gcam, u32 request_id, unsigned int streams, unsigned int num_frames, size_t settings_size, const void *settings) argument
784 gb_camera_op_configure_streams(void *priv, unsigned int *nstreams, unsigned int *flags, struct gb_camera_stream *streams, struct gb_camera_csi_params *csi_params) argument
842 gb_camera_op_capture(void *priv, u32 request_id, unsigned int streams, unsigned int num_frames, size_t settings_size, const void *settings) argument
911 struct gb_camera_stream_config *streams; local
[all...]
/linux-master/drivers/media/test-drivers/vidtv/
H A Dvidtv_channel.h14 * The PMT section for a channel will be assigned its streams.
38 * The PMT section for a channel will be assigned its streams.
46 * @program: A _single_ program with one or more streams associated with it.
48 * @streams: A stream loop used to populate the PMT section for 'program'
59 struct vidtv_psi_table_pmt_stream *streams; member in struct:vidtv_channel
/linux-master/tools/testing/selftests/drivers/net/mlxsw/
H A Dsch_ets.sh67 local -a streams=("$@")
72 qdisc_parent_stats_get $swp2 10:$((${streams[0]} + 1)) .bytes \
75 for stream in ${streams[@]}; do
/linux-master/tools/perf/util/
H A Dstream.c3 * Compare and figure out the top N hottest streams
20 zfree(&es[i].streams);
50 s->streams = calloc(nr_streams_max, sizeof(struct stream));
51 if (!s->streams)
78 es->streams[i].cnode = cnode;
84 * Considering a few number of hot streams, only use simple
87 hit = (es->streams[0].cnode)->hit;
89 if ((es->streams[i].cnode)->hit < hit) {
90 hit = (es->streams[i].cnode)->hit;
96 es->streams[id
[all...]
H A Dstream.h13 struct stream *streams; member in struct:evsel_streams
/linux-master/sound/virtio/
H A Dvirtio_chmap.c94 vs = &vpcm->streams[SNDRV_PCM_STREAM_PLAYBACK];
97 vs = &vpcm->streams[SNDRV_PCM_STREAM_CAPTURE];
152 for (i = 0; i < ARRAY_SIZE(vpcm->streams); ++i) {
153 vs = &vpcm->streams[i];
180 vs = &vpcm->streams[SNDRV_PCM_STREAM_PLAYBACK];
182 vs = &vpcm->streams[SNDRV_PCM_STREAM_CAPTURE];
206 for (i = 0; i < ARRAY_SIZE(vpcm->streams); ++i) {
207 vs = &vpcm->streams[i];
H A Dvirtio_pcm.c332 virtio_cread_le(vdev, struct virtio_snd_config, streams,
387 vpcm->streams[vss->direction].nsubstreams++;
412 vpcm->streams[SNDRV_PCM_STREAM_PLAYBACK].nsubstreams;
414 vpcm->streams[SNDRV_PCM_STREAM_CAPTURE].nsubstreams;
435 for (i = 0; i < ARRAY_SIZE(vpcm->streams); ++i) {
436 struct virtio_pcm_stream *stream = &vpcm->streams[i];
460 vs = &vpcm->streams[vss->direction];
465 for (i = 0; i < ARRAY_SIZE(vpcm->streams); ++i) {
466 struct virtio_pcm_stream *vs = &vpcm->streams[i];
467 struct snd_pcm_str *ks = &vpcm->pcm->streams[
[all...]
H A Dvirtio_pcm.h86 * @streams: VirtIO PCM streams (playback and capture).
92 struct virtio_pcm_stream streams[SNDRV_PCM_STREAM_LAST + 1]; member in struct:virtio_pcm
/linux-master/include/sound/
H A Dpcm_oss.h54 struct snd_pcm_substream *streams[2]; member in struct:snd_pcm_oss_file
/linux-master/sound/isa/
H A Dcmi8330.c163 } streams[2]; member in struct:snd_cmi8330
414 substream->private_data = chip->streams[SNDRV_PCM_STREAM_PLAYBACK].private_data;
415 return chip->streams[SNDRV_PCM_STREAM_PLAYBACK].open(substream);
423 substream->private_data = chip->streams[SNDRV_PCM_STREAM_CAPTURE].private_data;
424 return chip->streams[SNDRV_PCM_STREAM_CAPTURE].open(substream);
445 chip->streams[CMI_SB_STREAM].ops = *ops;
446 chip->streams[CMI_SB_STREAM].open = ops->open;
447 chip->streams[CMI_SB_STREAM].ops.open = cmi_open_callbacks[CMI_SB_STREAM];
448 chip->streams[CMI_SB_STREAM].private_data = chip->sb;
452 chip->streams[CMI_AD_STREA
[all...]
/linux-master/drivers/media/pci/ivtv/
H A Divtv-fileops.c19 #include "ivtv-streams.h"
29 associated VBI streams are also automatically claimed.
35 struct ivtv_stream *s = &itv->streams[type];
67 other streams we're done */
76 s_vbi = &itv->streams[vbi_type];
90 account associated VBI streams. */
115 for all other streams we're done */
117 s_vbi = &itv->streams[IVTV_DEC_STREAM_TYPE_VBI];
119 s_vbi = &itv->streams[IVTV_ENC_STREAM_TYPE_VBI];
196 struct ivtv_stream *s_vbi = &itv->streams[IVTV_ENC_STREAM_TYPE_VB
[all...]
H A DMakefile5 ivtv-mailbox.o ivtv-queue.o ivtv-streams.o ivtv-udma.o \
/linux-master/drivers/media/pci/cx18/
H A Dcx18-streams.c5 * Derived from ivtv-streams.c
18 #include "cx18-streams.h"
238 struct cx18_stream *s = &cx->streams[type];
305 struct cx18_stream *s = &cx->streams[type];
313 * For analog capture related streams, if video_dev.v4l2_dev == NULL then the
333 /* User explicitly selected 0 buffers for these streams, so don't
396 ret = cx18_stream_alloc(&cx->streams[type]);
403 /* One or more streams could not be initialized. Clean 'em all up. */
410 struct cx18_stream *s = &cx->streams[type];
430 struct cx18_stream *s_mpg = &cx->streams[CX18_ENC_STREAM_TYPE_MP
[all...]
H A DMakefile3 cx18-queue.o cx18-streams.o cx18-fileops.o cx18-ioctl.o cx18-controls.o \
/linux-master/net/mac80211/
H A Drc80211_minstrel_ht_debugfs.c80 p += sprintf(p, "%d ", mg->streams);
84 p += sprintf(p, "%d ", mg->streams);
102 p += sprintf(p, " MCS%-2u", (mg->streams - 1) * 8 + j);
104 p += sprintf(p, " MCS%-1u/%1u", j, mg->streams);
226 p += sprintf(p, "%d,", mg->streams);
230 p += sprintf(p, "%d,", mg->streams);
247 p += sprintf(p, ",MCS%-2u,", (mg->streams - 1) * 8 + j);
249 p += sprintf(p, ",MCS%-1u/%1u,", j, mg->streams);
H A Dairtime.c31 #define MCS_DURATION(streams, sgi, bps) \
32 ((u32)MCS_SYMBOL_TIME(sgi, MCS_N_KSYMS((streams) * (bps))))
34 #define MCS_DURATION_S(shift, streams, sgi, bps) \
35 ((u16)((MCS_DURATION(streams, sgi, bps) >> shift)))
52 #define HE_DURATION(streams, gi, bps) \
53 ((u32)HE_SYMBOL_TIME(gi, MCS_N_KSYMS((streams) * (bps))))
55 #define HE_DURATION_S(shift, streams, gi, bps) \
56 (HE_DURATION(streams, gi, bps) >> shift)
64 * Define group sort order: HT40 -> SGI -> #streams
408 int bw, streams; local
[all...]
/linux-master/sound/firewire/fireface/
H A Dff-midi.c116 stream = &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT];
122 stream = &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT];
/linux-master/sound/firewire/motu/
H A Dmotu-midi.c127 str = &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT];
132 str = &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT];
/linux-master/sound/firewire/tascam/
H A Dtascam-midi.c104 stream = &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT];
120 stream = &rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT];
/linux-master/sound/usb/line6/
H A Dpcm.h38 (line6pcm->pcm->streams[stream].substream)
146 /* protection to state changes of in/out streams */
149 /* Capture and playback streams */
/linux-master/drivers/gpu/drm/amd/display/dc/inc/
H A Dlink_enc_cfg.h48 * Algorithm for assigning available DIG link encoders to streams.
53 * Loop over all streams twice:
60 struct dc_stream_state *streams[],
/linux-master/drivers/gpu/drm/amd/display/dc/core/
H A Ddc_state.c73 /* trim back phantom streams */
171 /* retain streams and planes */
173 dc_stream_retain(dst_state->streams[i]);
284 dc_stream_release(state->streams[i]);
285 state->streams[i] = NULL;
353 DC_LOG_WARNING("Max streams reached, can't add stream %p !\n", stream);
357 state->streams[state->stream_count] = stream;
392 if (state->streams[i] == stream)
395 if (state->streams[i] != stream) {
400 dc_stream_release(state->streams[
[all...]

Completed in 215 milliseconds

123456789