Symbol: AFMT_CHANNEL
sys/arm/allwinner/a10_codec.c
744
(AFMT_CHANNEL(ch->format) == 1 ? DAC_FIFOC_MONO_EN : 0) |
sys/arm/allwinner/a10_codec.c
772
(AFMT_CHANNEL(ch->format) == 1 ? ADC_FIFOC_MONO_EN : 0) |
sys/arm/broadcom/bcm2835/bcm2835_audio.c
474
m.u.config.channels = AFMT_CHANNEL(fmt);
sys/dev/sound/pci/cmi.c
390
if (AFMT_CHANNEL(format) > 1) {
sys/dev/sound/pci/cs4281.c
238
if (AFMT_CHANNEL(format) < 2) dmr |= CS4281PCI_DMR_MONO;
sys/dev/sound/pci/cs4281.c
248
((AFMT_CHANNEL(format) > 1) ? 2 : 1);
sys/dev/sound/pci/csapcm.c
494
if (AFMT_CHANNEL(ch->fmt) < 2)
sys/dev/sound/pci/csapcm.c
503
if (AFMT_CHANNEL(ch->fmt) > 1)
sys/dev/sound/pci/emu10k1.c
1080
if (AFMT_CHANNEL(ch->fmt) > 1)
sys/dev/sound/pci/emu10k1.c
1085
if (AFMT_CHANNEL(ch->fmt) > 1)
sys/dev/sound/pci/emu10k1.c
625
v->stereo = (AFMT_CHANNEL(ch->fmt) > 1) ? 1 : 0;
sys/dev/sound/pci/emu10kx-pcm.c
793
if (AFMT_CHANNEL(ch->fmt) > 1)
sys/dev/sound/pci/emu10kx-pcm.c
979
if (AFMT_CHANNEL(ch->fmt) > 1)
sys/dev/sound/pci/emu10kx.c
1336
v->stereo = (AFMT_CHANNEL(fmt) > 1) ? 1 : 0;
sys/dev/sound/pci/es137x.c
545
if (AFMT_CHANNEL(format) > 1)
sys/dev/sound/pci/es137x.c
551
if (AFMT_CHANNEL(format) > 1)
sys/dev/sound/pci/es137x.c
558
if (AFMT_CHANNEL(format) > 1)
sys/dev/sound/pci/es137x.c
768
if (AFMT_CHANNEL(ch->fmt) > 1)
sys/dev/sound/pci/fm801.c
351
(AFMT_CHANNEL(format) > 1)?"stereo":"mono",
sys/dev/sound/pci/fm801.c
358
(AFMT_CHANNEL(format) > 1)? FM_PLAY_STEREO : 0;
sys/dev/sound/pci/fm801.c
364
fm801->rec_fmt = (AFMT_CHANNEL(format) > 1)? FM_REC_STEREO:0;
sys/dev/sound/pci/hda/hdaa.c
1850
fmt |= (AFMT_CHANNEL(ch->fmt) - 1);
sys/dev/sound/pci/hda/hdaa.c
1895
totalchn = AFMT_CHANNEL(ch->fmt);
sys/dev/sound/pci/hdsp-pcm.c
563
channels = AFMT_CHANNEL(ch->format); /* Number of PCM channels. */
sys/dev/sound/pci/hdsp-pcm.c
817
pos *= AFMT_CHANNEL(ch->format); /* Hardbuf with multiple channels. */
sys/dev/sound/pci/hdsp-pcm.c
962
(sc->period * AFMT_CHANNEL(ch->format) * sizeof(uint32_t)));
sys/dev/sound/pci/hdspe-pcm.c
552
n = AFMT_CHANNEL(ch->format); /* n channels */
sys/dev/sound/pci/hdspe-pcm.c
800
pos *= AFMT_CHANNEL(ch->format); /* Hardbuf with multiple channels. */
sys/dev/sound/pci/hdspe-pcm.c
957
(HDSPE_CHANBUF_SIZE * AFMT_CHANNEL(ch->format)) / (sc->period * 4),
sys/dev/sound/pci/maestro3.c
551
(AFMT_CHANNEL(format) > 1) ? "STEREO":"MONO"));
sys/dev/sound/pci/maestro3.c
554
data = (AFMT_CHANNEL(format) > 1)? 0 : 1;
sys/dev/sound/pci/maestro3.c
925
(AFMT_CHANNEL(format) > 1) ? "STEREO":"MONO"));
sys/dev/sound/pci/maestro3.c
928
data = (AFMT_CHANNEL(format) > 1) ? 0 : 1;
sys/dev/sound/pci/neomagic.c
341
if (AFMT_CHANNEL(ch->fmt) > 1) x |= NM_RATE_STEREO;
sys/dev/sound/pci/neomagic.c
417
if (AFMT_CHANNEL(ch->fmt) > 1)
sys/dev/sound/pci/solo.c
419
int stereo = (AFMT_CHANNEL(fmt) > 1)? 1 : 0;
sys/dev/sound/pci/t4dwave.c
490
bits |= (AFMT_CHANNEL(fmt) > 1)? 0x4 : 0;
sys/dev/sound/pci/via8233.c
410
if (AFMT_CHANNEL(format) > 1)
sys/dev/sound/pci/via8233.c
433
if (AFMT_CHANNEL(format) > 1)
sys/dev/sound/pci/via8233.c
452
if (AFMT_CHANNEL(format) > 1) {
sys/dev/sound/pci/via82c686.c
287
if (AFMT_CHANNEL(format) > 1)
sys/dev/sound/pci/vibes.c
238
ch->fmt = (AFMT_CHANNEL(format) > 1) ? SV_AFMT_STEREO : SV_AFMT_MONO;
sys/dev/sound/pcm/channel.c
1043
ch = AFMT_CHANNEL(afmt);
sys/dev/sound/pcm/channel.c
2099
if ((format & AFMT_PASSTHROUGH) && AFMT_CHANNEL(format) < 2) {
sys/dev/sound/pcm/channel.c
2434
if (AFMT_CHANNEL(besthwformat) >
sys/dev/sound/pcm/channel.c
2435
AFMT_CHANNEL(bestformat))
sys/dev/sound/pcm/channel.c
2437
else if (AFMT_CHANNEL(besthwformat) ==
sys/dev/sound/pcm/channel.c
2438
AFMT_CHANNEL(bestformat) &&
sys/dev/sound/pcm/dsp.c
1140
tmp = (AFMT_CHANNEL(wrch->format) > 1)? 1 : 0;
sys/dev/sound/pcm/dsp.c
1148
tmp = (AFMT_CHANNEL(rdch->format) > 1)? 1 : 0;
sys/dev/sound/pcm/dsp.c
1188
tmp = AFMT_CHANNEL(wrch->format);
sys/dev/sound/pcm/dsp.c
1196
tmp = AFMT_CHANNEL(rdch->format);
sys/dev/sound/pcm/dsp.c
1204
*arg_i = AFMT_CHANNEL(chn->format);
sys/dev/sound/pcm/dsp.c
1213
*arg_i = AFMT_CHANNEL(chn->format);
sys/dev/sound/pcm/dsp.c
1240
AFMT_CHANNEL(wrch->format),
sys/dev/sound/pcm/dsp.c
1248
AFMT_CHANNEL(rdch->format),
sys/dev/sound/pcm/dsp.c
2199
minch = min(AFMT_CHANNEL(caps->fmtlist[i]), minch);
sys/dev/sound/pcm/dsp.c
2200
maxch = max(AFMT_CHANNEL(caps->fmtlist[i]), maxch);
sys/dev/sound/pcm/dsp.c
2365
minch = min(AFMT_CHANNEL(caps->fmtlist[i]), minch);
sys/dev/sound/pcm/dsp.c
2366
maxch = max(AFMT_CHANNEL(caps->fmtlist[i]), maxch);
sys/dev/sound/pcm/dsp.c
878
AFMT_CHANNEL(wrch->format),
sys/dev/sound/pcm/dsp.c
894
AFMT_CHANNEL(rdch->format),
sys/dev/sound/pcm/feeder.c
198
ret |= (AFMT_CHANNEL(fmt) & 0x3f) << 2;
sys/dev/sound/pcm/feeder.c
286
if (AFMT_CHANNEL(fmt) > 1)
sys/dev/sound/pcm/feeder_chain.c
556
m->channels = AFMT_CHANNEL(fmt);
sys/dev/sound/pcm/feeder_chain.c
648
if (softmatrix->channels != AFMT_CHANNEL(softfmt) ||
sys/dev/sound/pcm/feeder_eq.c
286
info->channels = AFMT_CHANNEL(f->desc.in);
sys/dev/sound/pcm/feeder_format.c
65
AFMT_CHANNEL(f->desc.in) != AFMT_CHANNEL(f->desc.out))
sys/dev/sound/pcm/feeder_format.c
72
info->channels = AFMT_CHANNEL(f->desc.in);
sys/dev/sound/pcm/feeder_matrix.c
184
AFMT_CHANNEL(info->in) != m_in->channels ||
sys/dev/sound/pcm/feeder_matrix.c
185
AFMT_CHANNEL(info->out) != m_out->channels ||
sys/dev/sound/pcm/feeder_matrix.c
464
ch = AFMT_CHANNEL(format);
sys/dev/sound/pcm/feeder_matrix.c
491
ch = AFMT_CHANNEL(format);
sys/dev/sound/pcm/feeder_matrix.c
512
ch = AFMT_CHANNEL(format);
sys/dev/sound/pcm/feeder_mixer.c
86
info->channels = AFMT_CHANNEL(f->desc.in);
sys/dev/sound/pcm/feeder_rate.c
1476
info->channels = AFMT_CHANNEL(f->desc.in);
sys/dev/sound/pcm/feeder_volume.c
143
AFMT_CHANNEL(f->desc.in) > SND_CHN_MAX)
sys/dev/sound/pcm/feeder_volume.c
155
info->channels = AFMT_CHANNEL(f->desc.in);
sys/dev/sound/pcm/sound.h
370
#define AFMT_ALIGN(v) (AFMT_BPS(v) * AFMT_CHANNEL(v))
sys/dev/sound/sndstat.c
1330
AFMT_CHANNEL(f->desc.in) -
sys/dev/sound/sndstat.c
1333
AFMT_CHANNEL(f->desc.out) -
sys/dev/sound/sndstat.c
341
*minchn = min(AFMT_CHANNEL(caps->fmtlist[i]), *minchn);
sys/dev/sound/sndstat.c
342
*maxchn = max(AFMT_CHANNEL(caps->fmtlist[i]), *maxchn);
sys/dev/sound/sndstat.c
543
AFMT_CHANNEL(f->desc.in) -
sys/dev/sound/sndstat.c
546
AFMT_CHANNEL(f->desc.out) -
sys/dev/sound/usb/uaudio.c
2798
AFMT_CHANNEL(format) == 2)