Searched refs:ss (Results 26 - 50 of 333) sorted by relevance

1234567891011>>

/linux-master/arch/hexagon/kernel/
H A Dprocess.c59 struct hexagon_switch_stack *ss; local
74 ss = (struct hexagon_switch_stack *) ((unsigned long) childregs -
75 sizeof(*ss));
76 ss->lr = (unsigned long)ret_from_fork;
77 p->thread.switch_sp = ss;
81 ss->r24 = (unsigned long)args->fn;
82 ss->r25 = (unsigned long)args->fn_arg;
87 ss->r2524 = 0;
/linux-master/drivers/media/pci/tw686x/
H A Dtw686x-audio.c48 if (!ac->ss || !ac->curr_bufs[0] || !ac->curr_bufs[1]) {
77 snd_pcm_period_elapsed(ac->ss);
104 static int tw686x_pcm_open(struct snd_pcm_substream *ss) argument
106 struct tw686x_dev *dev = snd_pcm_substream_chip(ss);
107 struct tw686x_audio_channel *ac = &dev->audio_channels[ss->number];
108 struct snd_pcm_runtime *rt = ss->runtime;
111 ac->ss = ss;
121 static int tw686x_pcm_close(struct snd_pcm_substream *ss) argument
123 struct tw686x_dev *dev = snd_pcm_substream_chip(ss);
130 tw686x_pcm_prepare(struct snd_pcm_substream *ss) argument
211 tw686x_pcm_trigger(struct snd_pcm_substream *ss, int cmd) argument
250 tw686x_pcm_pointer(struct snd_pcm_substream *ss) argument
270 struct snd_pcm_substream *ss; local
[all...]
/linux-master/drivers/gpu/drm/xe/
H A Dxe_devcoredump.c65 struct xe_devcoredump_snapshot *ss = container_of(work, typeof(*ss), work); local
67 xe_force_wake_get(gt_to_fw(ss->gt), XE_FORCEWAKE_ALL);
68 if (ss->vm)
69 xe_vm_snapshot_capture_delayed(ss->vm);
70 xe_force_wake_put(gt_to_fw(ss->gt), XE_FORCEWAKE_ALL);
78 struct xe_devcoredump_snapshot *ss = &coredump->snapshot; local
89 flush_work(&ss->work);
102 ts = ktime_to_timespec64(ss->snapshot_time);
104 ts = ktime_to_timespec64(ss
157 struct xe_devcoredump_snapshot *ss = &coredump->snapshot; local
[all...]
/linux-master/net/netfilter/
H A Dnfnetlink.c158 nfnetlink_find_client(u16 type, const struct nfnetlink_subsystem *ss) argument
162 if (cb_id >= ss->cb_count)
165 return &ss->cb[cb_id];
221 const struct nfnetlink_subsystem *ss; local
232 ss = nfnetlink_get_subsys(type);
233 if (!ss) {
238 ss = nfnetlink_get_subsys(type);
239 if (!ss)
247 nc = nfnetlink_find_client(type, ss);
270 if (ss
376 const struct nfnetlink_subsystem *ss; local
702 const struct nfnetlink_subsystem *ss; local
[all...]
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_sseu.c72 int s, ss, total = 0; local
75 for (ss = 0; ss < sseu->max_subslices; ss++)
77 total += hweight16(sseu->eu_mask.xehp[ss]);
79 total += hweight16(sseu->eu_mask.hsw[s][ss]);
100 int s, ss, i; local
103 for (ss = 0; ss < sseu->max_subslices; ss
134 int s, ss, i; local
154 int ss; local
170 int ss; local
390 int s, ss; local
493 int s, ss; local
580 int s, ss; local
816 int s, ss; local
[all...]
/linux-master/drivers/crypto/allwinner/sun8i-ss/
H A Dsun8i-ss-hash.c3 * sun8i-ss-hash.c - hardware cryptographic offloader for
27 #include "sun8i-ss.h"
41 dev_err(tfmctx->ss->dev, "shash digest error ret=%d\n", ret);
103 op->ss = algt->ss;
109 dev_err(algt->ss->dev, "Fallback driver could no be loaded\n");
123 err = pm_runtime_get_sync(op->ss->dev);
128 pm_runtime_put_noidle(op->ss->dev);
141 pm_runtime_put_sync_suspend(tfmctx->ss->dev);
281 static int sun8i_ss_run_hash_task(struct sun8i_ss_dev *ss, argument
395 struct sun8i_ss_dev *ss; local
481 struct sun8i_ss_dev *ss; local
[all...]
/linux-master/tools/testing/selftests/x86/
H A Dsigaltstack.c56 stack_t ss; local
58 memset(&ss, 0, sizeof(ss));
59 ss.ss_size = size;
60 ss.ss_sp = start;
62 return sigaltstack(&ss, NULL);
H A Dnx_stack.c200 stack_t ss = {}; local
201 ss.ss_sp = p;
202 ss.ss_size = len;
203 int rv = sigaltstack(&ss, NULL);
/linux-master/drivers/infiniband/sw/rdmavt/
H A Drc.c156 * @ss: the sge state pointer
162 u32 rvt_restart_sge(struct rvt_sge_state *ss, struct rvt_swqe *wqe, u32 len) argument
164 ss->sge = wqe->sg_list[0];
165 ss->sg_list = wqe->sg_list + 1;
166 ss->num_sge = wqe->wr.num_sge;
167 ss->total_len = wqe->length;
168 rvt_skip_sge(ss, len, false);
/linux-master/kernel/cgroup/
H A Ddebug.c44 struct cgroup_subsys *ss; local
63 for_each_subsys(ss, i) {
64 css = cset->subsys[ss->id];
67 seq_printf(seq, "%2d: %-4s\t- %p[%d]\n", ss->id, ss->name,
207 struct cgroup_subsys *ss; local
216 for_each_subsys(ss, i) {
217 css = rcu_dereference_check(cgrp->subsys[ss->id], true);
227 seq_printf(seq, "%2d: %-4s\t- %p[%d] %d%s\n", ss->id, ss
239 struct cgroup_subsys *ss; local
[all...]
H A Dcgroup.c247 struct cgroup_subsys *ss);
479 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
481 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
488 struct cgroup_subsys *ss)
490 if (CGROUP_HAS_SUBSYS_CONFIG && ss)
491 return rcu_dereference_check(cgrp->subsys[ss->id],
498 * cgroup_e_css_by_mask - obtain a cgroup's effective css for the specified ss
500 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
503 * as the matching css of the nearest ancestor including self which has @ss
504 * enabled. If @ss i
487 cgroup_css(struct cgroup *cgrp, struct cgroup_subsys *ss) argument
507 cgroup_e_css_by_mask(struct cgroup *cgrp, struct cgroup_subsys *ss) argument
541 cgroup_e_css(struct cgroup *cgrp, struct cgroup_subsys *ss) argument
571 cgroup_get_e_css(struct cgroup *cgrp, struct cgroup_subsys *ss) argument
915 struct cgroup_subsys *ss; local
928 struct cgroup_subsys *ss; local
1056 struct cgroup_subsys *ss; local
1177 struct cgroup_subsys *ss; local
1516 struct cgroup_subsys *ss = cft->ss; local
1569 struct cgroup_subsys *ss; local
1781 struct cgroup_subsys *ss; local
2020 struct cgroup_subsys *ss; local
2542 struct cgroup_subsys *ss; local
2779 struct cgroup_subsys *ss; local
2957 struct cgroup_subsys *ss; local
2972 struct cgroup_subsys *ss; local
3088 struct cgroup_subsys *ss; variable in typeref:struct:cgroup_subsys
3179 struct cgroup_subsys *ss = css->ss; local
3206 struct cgroup_subsys *ss; local
3252 struct cgroup_subsys *ss; local
3375 struct cgroup_subsys *ss; local
3675 cgroup_tryget_css(struct cgroup *cgrp, struct cgroup_subsys *ss) argument
3692 struct cgroup_subsys *ss = cgroup_subsys[ssid]; local
3711 struct cgroup_subsys *ss = cgroup_subsys[ssid]; local
4272 struct cgroup_subsys *ss = cfts[0].ss; local
4313 cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) argument
4404 cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) argument
4437 cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) argument
4454 cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts) argument
5352 struct cgroup_subsys *ss = css->ss; local
5402 struct cgroup_subsys *ss = css->ss; local
5461 init_and_link_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss, struct cgroup *cgrp) argument
5492 struct cgroup_subsys *ss = css->ss; local
5513 struct cgroup_subsys *ss = css->ss; local
5538 css_create(struct cgroup *cgrp, struct cgroup_subsys *ss) argument
5978 cgroup_init_subsys(struct cgroup_subsys *ss, bool early) argument
6040 struct cgroup_subsys *ss; local
6076 struct cgroup_subsys *ss; local
6262 struct cgroup_subsys *ss; local
6527 struct cgroup_subsys *ss; local
6567 struct cgroup_subsys *ss; local
6591 struct cgroup_subsys *ss; variable in typeref:struct:cgroup_subsys
6679 struct cgroup_subsys *ss; local
6709 struct cgroup_subsys *ss; local
6730 struct cgroup_subsys *ss; local
6786 css_tryget_online_from_dir(struct dentry *dentry, struct cgroup_subsys *ss) argument
6825 css_from_id(int id, struct cgroup_subsys *ss) argument
7037 struct cgroup_subsys *ss; local
[all...]
/linux-master/arch/mips/boot/compressed/
H A Dstring.c26 char *ss = s; local
29 ss[i] = c;
/linux-master/drivers/gpu/drm/imx/dcss/
H A DMakefile2 dcss-ss.o dcss-dpr.o dcss-scaler.o dcss-kms.o dcss-crtc.o \
/linux-master/drivers/scsi/
H A Dscsi_proto_test.c28 } ss = { .arr = { 0x80, 0, 0x12, 0x34, 0x3f } }; local
29 KUNIT_EXPECT_EQ(test, ss.s.perm + 0, 1);
30 KUNIT_EXPECT_EQ(test, get_unaligned_be16(&ss.s.stream_identifier),
32 KUNIT_EXPECT_EQ(test, ss.s.rel_lifetime + 0, 0x3f);
/linux-master/arch/x86/include/asm/
H A Dfred.h75 struct fred_ss ss = { local
76 .ss =__KERNEL_DS,
83 asm_fred_entry_from_kvm(ss);
/linux-master/drivers/crypto/allwinner/sun4i-ss/
H A Dsun4i-ss-hash.c3 * sun4i-ss-hash.c - hardware cryptographic accelerator for Allwinner A20 SoC
11 #include "sun4i-ss.h"
28 op->ss = algt->ss;
30 err = pm_runtime_resume_and_get(op->ss->dev);
43 pm_runtime_put(op->ss->dev);
196 struct sun4i_ss_ctx *ss = tfmctx->ss; local
204 dev_dbg(ss->dev, "%s %s bc=%llu len=%u mode=%x wl=%u h0=%0x",
214 dev_err(ss
[all...]
H A Dsun4i-ss-cipher.c3 * sun4i-ss-cipher.c - hardware cryptographic accelerator for Allwinner A20 SoC
13 #include "sun4i-ss.h"
19 struct sun4i_ss_ctx *ss = op->ss; local
45 dev_err_ratelimited(ss->dev, "ERROR: Some SGs are NULL\n");
60 spin_lock_irqsave(&ss->slock, flags);
63 writesl(ss->base + SS_KEY0 + i * 4, &op->key[i], 1);
68 writesl(ss->base + SS_IV0 + i * 4, &v, 1);
71 writel(mode, ss->base + SS_CTL);
86 dev_err_ratelimited(ss
180 struct sun4i_ss_ctx *ss = op->ss; local
581 struct sun4i_ss_ctx *ss = op->ss; local
[all...]
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dsockmap_helpers.h242 static inline void init_addr_loopback4(struct sockaddr_storage *ss, argument
245 struct sockaddr_in *addr4 = memset(ss, 0, sizeof(*ss));
253 static inline void init_addr_loopback6(struct sockaddr_storage *ss, argument
256 struct sockaddr_in6 *addr6 = memset(ss, 0, sizeof(*ss));
264 static inline void init_addr_loopback_vsock(struct sockaddr_storage *ss, argument
267 struct sockaddr_vm *addr = memset(ss, 0, sizeof(*ss));
275 static inline void init_addr_loopback(int family, struct sockaddr_storage *ss, argument
293 sockaddr(struct sockaddr_storage *ss) argument
[all...]
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_sdma.c68 static void sdma_get(struct qib_sdma_state *ss) argument
70 kref_get(&ss->kref);
75 struct qib_sdma_state *ss = local
78 complete(&ss->comp);
81 static void sdma_put(struct qib_sdma_state *ss) argument
83 kref_put(&ss->kref, sdma_complete);
86 static void sdma_finalput(struct qib_sdma_state *ss) argument
88 sdma_put(ss);
89 wait_for_completion(&ss->comp);
172 struct qib_sdma_state *ss local
183 struct qib_sdma_state *ss = &ppd->sdma_state; local
197 struct qib_sdma_state *ss = &ppd->sdma_state; local
511 qib_sdma_verbs_send(struct qib_pportdata *ppd, struct rvt_sge_state *ss, u32 dwords, struct qib_verbs_txreq *tx) argument
751 struct qib_sdma_state *ss = &ppd->sdma_state; local
[all...]
/linux-master/tools/perf/util/
H A Dsymbol-minimal.c258 int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name, argument
265 ss->name = strdup(name);
266 if (!ss->name)
269 ss->fd = fd;
270 ss->type = type;
280 bool symsrc__possibly_runtime(struct symsrc *ss __maybe_unused)
286 bool symsrc__has_symtab(struct symsrc *ss __maybe_unused)
291 void symsrc__destroy(struct symsrc *ss) argument
293 zfree(&ss->name);
294 close(ss
341 dso__load_sym(struct dso *dso, struct map *map __maybe_unused, struct symsrc *ss, struct symsrc *runtime_ss __maybe_unused, int kmodule __maybe_unused) argument
[all...]
/linux-master/sound/soc/sh/
H A Dsiu_pcm.c292 struct snd_pcm_substream *ss)
297 struct siu_port *port_info = siu_port_info(ss);
300 struct device *dev = ss->pcm->card->dev;
309 if (ss->stream == SNDRV_PCM_STREAM_PLAYBACK) {
328 siu_stream->substream = ss;
334 struct snd_pcm_substream *ss)
337 struct device *dev = ss->pcm->card->dev;
338 struct siu_port *port_info = siu_port_info(ss);
343 if (ss->stream == SNDRV_PCM_STREAM_PLAYBACK)
357 struct snd_pcm_substream *ss)
291 siu_pcm_open(struct snd_soc_component *component, struct snd_pcm_substream *ss) argument
333 siu_pcm_close(struct snd_soc_component *component, struct snd_pcm_substream *ss) argument
356 siu_pcm_prepare(struct snd_soc_component *component, struct snd_pcm_substream *ss) argument
403 siu_pcm_trigger(struct snd_soc_component *component, struct snd_pcm_substream *ss, int cmd) argument
447 siu_pcm_pointer_dma(struct snd_soc_component *component, struct snd_pcm_substream *ss) argument
[all...]
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dconfig2csv.sh51 ns = asorti(s, ss);
54 printf ",\"%s\"", ss[j];
59 printf ",\"%s\"", p[cs[i] ":" ss[j]];
/linux-master/arch/x86/include/uapi/asm/
H A Dptrace.h75 unsigned long ss; member in struct:pt_regs
/linux-master/drivers/pcmcia/
H A Dbcm63xx_pcmcia.h7 #include <pcmcia/ss.h>
/linux-master/crypto/
H A Dhmac.c36 int ss = crypto_shash_statesize(parent); local
40 u8 *opad = &tctx->pads[ss];
112 int ss = crypto_shash_statesize(parent); local
114 const u8 *opad = &tctx->pads[ss];
128 int ss = crypto_shash_statesize(parent); local
130 const u8 *opad = &tctx->pads[ss];
186 int ss; local
210 ss = salg->statesize;
212 ss < alg->cra_blocksize)
221 inst->alg.base.cra_ctxsize = sizeof(struct hmac_ctx) + (ss *
[all...]

Completed in 205 milliseconds

1234567891011>>