Searched refs:wss (Results 1 - 25 of 35) sorted by relevance

12

/linux-master/sound/isa/wss/
H A DMakefile7 snd-wss-lib-objs := wss_lib.o
10 obj-$(CONFIG_SND_WSS_LIB) += snd-wss-lib.o
/linux-master/tools/testing/selftests/damon/
H A Ddamos_quota.py54 for wss in wss_collected:
55 if wss > sz_quota:
56 print('quota is not kept: %s > %s' % (wss, sz_quota))
58 print('\n'.join(['%d' % wss for wss in wss_collected]))
H A Dsysfs_update_schemes_tried_regions_wss_estimation.py51 print('\n'.join(['%d' % wss for wss in wss_collected]))
/linux-master/sound/isa/gus/
H A Dgusmax.c16 #include <sound/wss.h>
62 struct snd_wss *wss; member in struct:snd_gusmax
106 snd_wss_interrupt(irq, maxcard->wss);
194 struct snd_wss *wss; local
289 &wss);
293 err = snd_wss_pcm(wss, 0);
297 err = snd_wss_mixer(wss);
301 err = snd_wss_timer(wss, 2);
310 err = snd_gusmax_mixer(wss);
327 maxcard->wss
[all...]
H A Dinterwave.c19 #include <sound/wss.h>
99 struct snd_wss *wss; member in struct:snd_interwave
300 snd_wss_interrupt(irq, iwcard->wss);
633 struct snd_wss *wss; local
676 &wss);
680 err = snd_wss_pcm(wss, 0);
684 sprintf(wss->pcm->name + strlen(wss->pcm->name), " rev %c",
686 strcat(wss->pcm->name, " (codec)");
688 err = snd_wss_timer(wss,
[all...]
/linux-master/sound/isa/
H A Dcmi8328.c18 #include <sound/wss.h>
78 struct snd_wss *wss; member in struct:snd_cmi8328
307 dma2[ndev], WSS_HW_DETECT, 0, &cmi->wss);
311 err = snd_wss_pcm(cmi->wss, 0);
315 err = snd_wss_mixer(cmi->wss);
318 err = snd_cmi8328_mixer(cmi->wss);
322 if (snd_wss_timer(cmi->wss, 0) < 0)
368 card->shortname, cmi->wss->port, irq[ndev], dma1[ndev],
426 cmi->wss->suspend(cmi->wss);
[all...]
H A Dcmi8330.c38 #include <sound/wss.h>
155 struct snd_wss *wss; member in struct:snd_cmi8330
162 void *private_data; /* sb or wss */
305 acard->wss));
455 chip->streams[CMI_AD_STREAM].private_data = chip->wss;
474 acard->wss->suspend(acard->wss);
485 acard->wss->resume(acard->wss);
532 WSS_HW_DETECT, 0, &acard->wss);
[all...]
H A DMakefile29 sb/ wavefront/ wss/
H A Dopl3sa2.c16 #include <sound/wss.h>
113 struct snd_wss *wss; member in struct:snd_opl3sa2
307 snd_wss_interrupt(irq, chip->wss);
552 chip->wss->suspend(chip->wss);
581 /* restore wss */
582 chip->wss->resume(chip->wss);
605 snd_printdd("%sPnP OPL3-SA: sb port=0x%lx, wss port=0x%lx, fm port=0x%lx, midi port=0x%lx\n",
637 struct snd_wss *wss; local
[all...]
H A Dazt2320.c29 #include <sound/wss.h>
/linux-master/net/netfilter/
H A Dnfnetlink_osf.c81 if (f->wss.wc >= OSF_WSS_MAX)
95 check_WSS = f->wss.wc;
129 if (f->wss.val == 0 || ctx->window == f->wss.val)
141 if (ctx->window == f->wss.val * mss ||
142 ctx->window == f->wss.val * SMART_MSS_1 ||
143 ctx->window == f->wss.val * SMART_MSS_2)
147 if (ctx->window == f->wss.val * (mss + 40) ||
148 ctx->window == f->wss.val * (SMART_MSS_1 + 40) ||
149 ctx->window == f->wss
[all...]
/linux-master/drivers/media/test-drivers/vivid/
H A Dvivid-vbi-gen.c16 static void wss_insert(u8 *wss, u32 val, unsigned size) argument
19 *wss++ = (val & (1 << size)) ? 0xc0 : 0x10;
26 u8 wss[29 + 24 + 24 + 24 + 18 + 18] = { 0 }; local
33 wss_insert(wss + bit, 0x1f1c71c7, 29); bit += 29;
34 wss_insert(wss + bit, 0x1e3c1f, 24); bit += 24;
38 wss_insert(wss + bit, (wss_data & (1 << i)) ? one : zero, 6);
40 for (i = 0, bit = 0; bit < sizeof(wss); bit++) {
44 buf[i++] = wss[bit];
/linux-master/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddisplay-sysfs.c200 unsigned int wss; local
205 wss = dssdev->driver->get_wss(dssdev);
207 return sysfs_emit(buf, "0x%05x\n", wss);
213 u32 wss; local
219 r = kstrtou32(buf, 0, &wss);
223 if (wss > 0xfffff)
226 r = dssdev->driver->set_wss(dssdev, wss);
255 static DISPLAY_ATTR(wss, S_IRUGO|S_IWUSR,
/linux-master/include/uapi/linux/netfilter/
H A Dnfnetlink_osf.h55 struct nf_osf_wc wss; member in struct:nf_osf_user_finger
/linux-master/drivers/infiniband/sw/rdmavt/
H A Dqp.c105 struct rvt_wss *wss = rdi->wss; local
107 if (!wss)
111 kfree(wss->entries);
112 wss->entries = NULL;
113 kfree(rdi->wss);
114 rdi->wss = NULL;
118 * rvt_wss_init - Init wss data structures
131 struct rvt_wss *wss; local
135 rdi->wss
201 wss_advance_clean_counter(struct rvt_wss *wss) argument
245 wss_insert(struct rvt_wss *wss, void *address) argument
260 wss_exceeds_threshold(struct rvt_wss *wss) argument
2821 struct rvt_wss *wss = rdi->wss; local
[all...]
/linux-master/sound/isa/cs423x/
H A Dcs4236.c13 #include <sound/wss.h>
80 struct pnp_dev *wss; member in struct:snd_card_cs4236
217 snd_printdd("isapnp WSS: wss port=0x%lx, fm port=0x%lx, sb port=0x%lx\n",
261 acard->wss = pdev;
262 if (snd_cs423x_pnp_init_wss(dev, acard->wss) < 0)
275 acard->wss = pnp_request_card_device(card, id->devs[0].id, NULL);
276 if (acard->wss == NULL)
288 if (snd_cs423x_pnp_init_wss(dev, acard->wss) < 0)
H A Dcs4231.c16 #include <sound/wss.h>
/linux-master/include/sound/
H A Dsnd_wavefront.h105 struct pnp_dev *wss; member in struct:_snd_wavefront_card
/linux-master/drivers/video/fbdev/omap2/omapfb/displays/
H A Dconnector-analog-tv.c155 static int tvc_set_wss(struct omap_dss_device *dssdev, u32 wss) argument
160 return in->ops.atv->set_wss(in, wss);
/linux-master/sound/isa/wavefront/
H A Dwavefront.c18 #include <sound/wss.h>
98 acard->wss = pnp_request_card_device(card, id->devs[0].id, NULL);
99 if (acard->wss == NULL)
127 pdev = acard->wss;
/linux-master/sound/isa/ad1848/
H A Dad1848.c16 #include <sound/wss.h>
/linux-master/sound/isa/opti9xx/
H A Dmiro.c22 #include <sound/wss.h>
46 static int wss; variable
70 module_param(wss, int, 0444);
71 MODULE_PARM_DESC(wss, "wss mode");
667 if ((aci->aci_product == 'A') && wss) {
668 error = aci_setvalue(aci, ACI_SET_WSS, wss);
985 snd_iprintf(buffer, " wss : 0x%x\n", wss);
/linux-master/drivers/media/i2c/
H A Dsaa7115.c729 int wss = 0; local
738 wss |= b2 << i;
740 parity = wss & 15;
747 return wss;
1197 u32 wss; local
1235 wss = saa711x_decode_wss(p);
1236 if (wss == -1)
1238 p[0] = wss & 0xff;
1239 p[1] = wss >> 8;
/linux-master/drivers/media/pci/ivtv/
H A Divtv-vbi.c112 int wss = d->data[0] | d->data[1] << 8; local
114 if (vi->wss_payload != wss) {
115 vi->wss_payload = wss;
/linux-master/sound/soc/sunxi/
H A Dsun4i-i2s.c44 #define SUN4I_I2S_FMT0_WSS(wss) ((wss) << 2)
602 int ret, sr, wss; local
642 wss = i2s->variant->get_wss(slot_width);
643 if (wss < 0)
646 regmap_field_write(i2s->field_fmt_wss, wss);

Completed in 248 milliseconds

12