| /linux/tools/testing/selftests/damon/ |
| H A D | damos_quota.py | 55 for wss in wss_collected: 56 if wss > sz_quota: 57 print('quota is not kept: %s > %s' % (wss, sz_quota)) 59 print('\n'.join(['%d' % wss for wss in wss_collected])) 61 if wss == sz_quota:
|
| H A D | sysfs_update_schemes_tried_regions_wss_estimation.py | 51 print('\n'.join(['%d' % wss for wss in wss_collected]))
|
| /linux/sound/isa/gus/ |
| H A D | gusmax.c | 62 struct snd_wss *wss; member 104 snd_wss_interrupt(irq, maxcard->wss); in snd_gusmax_interrupt() 192 struct snd_wss *wss; in snd_gusmax_probe() local 287 &wss); in snd_gusmax_probe() 291 err = snd_wss_pcm(wss, 0); in snd_gusmax_probe() 295 err = snd_wss_mixer(wss); in snd_gusmax_probe() 299 err = snd_wss_timer(wss, 2); in snd_gusmax_probe() 308 err = snd_gusmax_mixer(wss); in snd_gusmax_probe() 325 maxcard->wss = wss; in snd_gusmax_probe()
|
| /linux/net/netfilter/ |
| H A D | nfnetlink_osf.c | 81 if (f->wss.wc >= OSF_WSS_MAX) in nf_osf_match_one() 95 check_WSS = f->wss.wc; in nf_osf_match_one() 129 if (f->wss.val == 0 || ctx->window == f->wss.val) in nf_osf_match_one() 141 if (ctx->window == f->wss.val * mss || in nf_osf_match_one() 142 ctx->window == f->wss.val * SMART_MSS_1 || in nf_osf_match_one() 143 ctx->window == f->wss.val * SMART_MSS_2) in nf_osf_match_one() 147 if (ctx->window == f->wss.val * (mss + 40) || in nf_osf_match_one() 148 ctx->window == f->wss.val * (SMART_MSS_1 + 40) || in nf_osf_match_one() 149 ctx->window == f->wss.val * (SMART_MSS_2 + 40)) in nf_osf_match_one() 153 if ((ctx->window % f->wss.val) == 0) in nf_osf_match_one()
|
| /linux/sound/isa/ |
| H A D | cmi8328.c | 78 struct snd_wss *wss; member 307 dma2[ndev], WSS_HW_DETECT, 0, &cmi->wss); in snd_cmi8328_probe() 311 err = snd_wss_pcm(cmi->wss, 0); in snd_cmi8328_probe() 315 err = snd_wss_mixer(cmi->wss); in snd_cmi8328_probe() 318 err = snd_cmi8328_mixer(cmi->wss); in snd_cmi8328_probe() 322 if (snd_wss_timer(cmi->wss, 0) < 0) in snd_cmi8328_probe() 368 card->shortname, cmi->wss->port, irq[ndev], dma1[ndev], in snd_cmi8328_probe() 426 cmi->wss->suspend(cmi->wss); in snd_cmi8328_suspend() 441 cmi->wss->resume(cmi->wss); in snd_cmi8328_resume()
|
| H A D | Makefile | 29 sb/ wavefront/ wss/
|
| /linux/drivers/video/fbdev/omap2/omapfb/dss/ |
| H A D | display-sysfs.c | 200 unsigned int wss; in display_wss_show() local 205 wss = dssdev->driver->get_wss(dssdev); in display_wss_show() 207 return sysfs_emit(buf, "0x%05x\n", wss); in display_wss_show() 213 u32 wss; in display_wss_store() local 219 r = kstrtou32(buf, 0, &wss); in display_wss_store() 223 if (wss > 0xfffff) in display_wss_store() 226 r = dssdev->driver->set_wss(dssdev, wss); in display_wss_store() 255 static DISPLAY_ATTR(wss, S_IRUGO|S_IWUSR,
|
| /linux/Documentation/translations/zh_TW/admin-guide/mm/damon/ |
| H A D | start.rst | 82 $ sudo damo report wss --range 0 101 10 83 # <percentile> <wss> 100 $ sudo damo report wss --range 0 101 10 --sortby time 101 # <percentile> <wss>
|
| /linux/Documentation/translations/zh_CN/admin-guide/mm/damon/ |
| H A D | start.rst | 82 $ sudo damo report wss --range 0 101 10 83 # <percentile> <wss> 100 $ sudo damo report wss --range 0 101 10 --sortby time 101 # <percentile> <wss>
|
| /linux/sound/isa/wss/ |
| H A D | Makefile | 7 snd-wss-lib-y := wss_lib.o 10 obj-$(CONFIG_SND_WSS_LIB) += snd-wss-lib.o
|
| /linux/samples/damon/ |
| H A D | wsse.c | 45 unsigned long wss = 0; in damon_sample_wsse_repeat_call_fn() local 49 wss += r->ar.end - r->ar.start; in damon_sample_wsse_repeat_call_fn() 51 pr_info("wss: %lu\n", wss); in damon_sample_wsse_repeat_call_fn()
|
| H A D | prcl.c | 44 unsigned long wss = 0; in damon_sample_prcl_repeat_call_fn() local 48 wss += r->ar.end - r->ar.start; in damon_sample_prcl_repeat_call_fn() 50 pr_info("wss: %lu\n", wss); in damon_sample_prcl_repeat_call_fn()
|
| /linux/sound/isa/cs423x/ |
| H A D | cs4236.c | 80 struct pnp_dev *wss; member 263 acard->wss = pdev; in snd_card_cs423x_pnp() 264 if (snd_cs423x_pnp_init_wss(dev, acard->wss) < 0) in snd_card_cs423x_pnp() 277 acard->wss = pnp_request_card_device(card, id->devs[0].id, NULL); in snd_card_cs423x_pnpc() 278 if (acard->wss == NULL) in snd_card_cs423x_pnpc() 290 if (snd_cs423x_pnp_init_wss(dev, acard->wss) < 0) in snd_card_cs423x_pnpc()
|
| /linux/Documentation/admin-guide/mm/damon/ |
| H A D | start.rst | 134 $ sudo damo report wss --range 0 101 10 135 # <percentile> <wss> 153 $ sudo damo report wss --range 0 101 10 --sortby time 154 # <percentile> <wss>
|
| /linux/drivers/video/fbdev/omap2/omapfb/displays/ |
| H A D | connector-analog-tv.c | 155 static int tvc_set_wss(struct omap_dss_device *dssdev, u32 wss) in tvc_set_wss() argument 160 return in->ops.atv->set_wss(in, wss); in tvc_set_wss()
|
| /linux/include/uapi/linux/netfilter/ |
| H A D | nfnetlink_osf.h | 55 struct nf_osf_wc wss; member
|
| /linux/include/sound/ |
| H A D | snd_wavefront.h | 105 struct pnp_dev *wss; member
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | vidioc-g-sliced-vbi-cap.rst | 165 - See :ref:`v4l2-sliced-vbi-cap-wss-625-payload` below. 178 .. _v4l2-sliced-vbi-cap-wss-625-payload:
|
| /linux/sound/isa/wavefront/ |
| H A D | wavefront.c | 98 acard->wss = pnp_request_card_device(card, id->devs[0].id, NULL); in snd_wavefront_pnp() 99 if (acard->wss == NULL) in snd_wavefront_pnp() 127 pdev = acard->wss; in snd_wavefront_pnp()
|
| /linux/sound/soc/sunxi/ |
| H A D | sun4i-i2s.c | 44 #define SUN4I_I2S_FMT0_WSS(wss) ((wss) << 2) argument 604 int ret, sr, wss; in sun4i_i2s_hw_params() local 644 wss = i2s->variant->get_wss(slot_width); in sun4i_i2s_hw_params() 645 if (wss < 0) in sun4i_i2s_hw_params() 648 regmap_field_write(i2s->field_fmt_wss, wss); in sun4i_i2s_hw_params()
|
| /linux/include/rdma/ |
| H A D | rdma_vt.h | 428 struct rvt_wss *wss; member
|
| /linux/Documentation/sound/ |
| H A D | alsa-configuration.rst | 1524 wss
|