Home
last modified time | relevance | path

Searched full:rscs (Results 1 – 8 of 8) sorted by relevance

/linux/tools/memory-model/
H A Dlinux-kernel.bell57 let rcu-rscs = let rec
69 flag ~empty Rcu-lock \ domain(rcu-rscs) as unmatched-rcu-lock
70 flag ~empty Rcu-unlock \ range(rcu-rscs) as unmatched-rcu-unlock
74 let srcu-rscs = ([Srcu-lock] ; carry-srcu-data ; data ; [Srcu-unlock]) & loc
77 flag ~empty Srcu-lock \ domain(srcu-rscs) as unmatched-srcu-lock
78 flag ~empty Srcu-unlock \ range(srcu-rscs) as unmatched-srcu-unlock
79 flag ~empty (srcu-rscs^-1 ; srcu-rscs) \ id as multiple-srcu-matches
82 flag ~empty rcu-rscs & (po ; [Sync-srcu] ; po) as invalid-sleep
85 flag ~empty different-values(srcu-rscs) a
[all...]
H A Dlinux-kernel.cat136 let rcu-rscsi = rcu-rscs^-1
137 let srcu-rscsi = srcu-rscs^-1
/linux/sound/pci/ctxfi/
H A Dctresource.c23 get_resource(u8 *rscs, unsigned int amount, in get_resource() argument
32 if (rscs[j] & ((u8)1 << k)) { in get_resource()
49 rscs[j] |= ((u8)1 << k); in get_resource()
58 static int put_resource(u8 *rscs, unsigned int multi, unsigned int idx) in put_resource() argument
66 rscs[j] &= ~((u8)1 << k); in put_resource()
80 err = get_resource(mgr->rscs, mgr->amount, n, ridx); in mgr_get_resource()
89 put_resource(mgr->rscs, n, idx); in mgr_put_resource()
211 mgr->rscs = kzalloc(DIV_ROUND_UP(amount, 8), GFP_KERNEL); in rsc_mgr_init()
212 if (!mgr->rscs) in rsc_mgr_init()
250 kfree(mgr->rscs); in rsc_mgr_init()
[all …]
H A Dctatc.c1114 struct rsc *rscs[2] = {NULL}; in atc_spdif_out_passthru()
1126 &rscs[0], &rscs[1]); in atc_spdif_out_passthru()
1127 dao->ops->set_left_input(dao, rscs[0]); in atc_spdif_out_passthru()
1128 dao->ops->set_right_input(dao, rscs[1]); in atc_spdif_out_passthru()
1449 struct rsc *rscs[2] = {NULL}; in atc_connect_dai()
1454 rscs[0] = &dai->daio.rscl; in atc_connect_dai()
1455 rscs[1] = &dai->daio.rscr; in atc_connect_dai()
1459 srcimp->ops->map(srcimp, src, rscs[i]); in atc_connect_dai()
1491 struct rsc *rscs[ in atc_connect_resources()
1115 struct rsc *rscs[2] = {NULL}; atc_spdif_out_passthru() local
1451 struct rsc *rscs[2] = {NULL}; atc_connect_dai() local
1493 struct rsc *rscs[2] = {NULL}; atc_connect_resources() local
[all...]
H A Dctresource.h57 unsigned char *rscs; /* The bit-map for resource allocation */ member
/linux/Documentation/devicetree/bindings/interconnect/
H A Dqcom,bcm-voter.yaml17 RSCs.
/linux/drivers/scsi/
H A Dsd.h157 unsigned rscs : 1; /* reduced stream control support */ member
/linux/tools/memory-model/Documentation/
H A Dexplanation.txt1886 idx1 = srcu_read_lock(&s); // Start of first RSCS
1887 idx2 = srcu_read_lock(&s); // Start of second RSCS
1888 srcu_read_unlock(&s, idx1); // End of first RSCS
1889 srcu_read_unlock(&s, idx2); // End of second RSCS