Home
last modified time | relevance | path

Searched refs:nw (Results 1 – 13 of 13) sorted by relevance

/Linux-v5.4/drivers/staging/wusbcore/
Dwa-nep.c82 struct wa_notif_work *nw = container_of(ws, struct wa_notif_work, in wa_notif_dispatch() local
84 struct wahc *wa = nw->wa; in wa_notif_dispatch()
96 size = nw->size; in wa_notif_dispatch()
97 itr = nw->data; in wa_notif_dispatch()
139 kfree(nw); in wa_notif_dispatch()
170 struct wa_notif_work *nw; in wa_nep_queue() local
182 nw = kzalloc(sizeof(*nw) + size, GFP_ATOMIC); in wa_nep_queue()
183 if (nw == NULL) { in wa_nep_queue()
189 INIT_WORK(&nw->work, wa_notif_dispatch); in wa_nep_queue()
190 nw->wa = wa_get(wa); in wa_nep_queue()
[all …]
/Linux-v5.4/arch/powerpc/mm/book3s64/
Dsubpage_prot.c92 size_t nw; in subpage_prot_clear() local
119 nw = PTRS_PER_PTE - i; in subpage_prot_clear()
120 if (addr + (nw << PAGE_SHIFT) > next) in subpage_prot_clear()
121 nw = (next - addr) >> PAGE_SHIFT; in subpage_prot_clear()
123 memset(spp, 0, nw * sizeof(u32)); in subpage_prot_clear()
126 hpte_flush_range(mm, addr, nw); in subpage_prot_clear()
195 size_t nw; in SYSCALL_DEFINE3() local
266 nw = PTRS_PER_PTE - i; in SYSCALL_DEFINE3()
267 if (addr + (nw << PAGE_SHIFT) > next) in SYSCALL_DEFINE3()
268 nw = (next - addr) >> PAGE_SHIFT; in SYSCALL_DEFINE3()
[all …]
/Linux-v5.4/drivers/macintosh/
Dwindfarm_fcu_controls.c89 int tries, nr, nw; in wf_fcu_read_reg() local
96 nw = i2c_master_send(pv->i2c, buf, 1); in wf_fcu_read_reg()
97 if (nw > 0 || (nw < 0 && nw != -EIO) || tries >= 100) in wf_fcu_read_reg()
102 if (nw <= 0) { in wf_fcu_read_reg()
103 pr_err("Failure writing address to FCU: %d", nw); in wf_fcu_read_reg()
104 nr = nw; in wf_fcu_read_reg()
116 pr_err("wf_fcu: Failure reading data from FCU: %d", nw); in wf_fcu_read_reg()
125 int tries, nw; in wf_fcu_write_reg() local
133 nw = i2c_master_send(pv->i2c, buf, nb); in wf_fcu_write_reg()
134 if (nw > 0 || (nw < 0 && nw != -EIO) || tries >= 100) in wf_fcu_write_reg()
[all …]
/Linux-v5.4/drivers/media/pci/bt8xx/
Dbtcx-risc.c125 s32 nx,nw,dx; in btcx_align() local
130 nw = (win->width) & ~mask; in btcx_align()
131 if (nx + nw > win->left + win->width) in btcx_align()
132 nw -= mask+1; in btcx_align()
135 win->width = nw; in btcx_align()
142 nw = (clips[i].c.width) & ~mask; in btcx_align()
143 if (nx + nw < clips[i].c.left-dx + clips[i].c.width) in btcx_align()
144 nw += mask+1; in btcx_align()
146 clips[i].c.width = nw; in btcx_align()
/Linux-v5.4/crypto/
Dvmac.c148 #define nh_16(mp, kp, nw, rh, rl) \ argument
152 for (i = 0; i < nw; i += 2) { \
159 #define nh_16_2(mp, kp, nw, rh, rl, rh1, rl1) \ argument
163 for (i = 0; i < nw; i += 2) { \
174 #define nh_vmac_nhbytes(mp, kp, nw, rh, rl) \ argument
178 for (i = 0; i < nw; i += 8) { \
194 #define nh_vmac_nhbytes_2(mp, kp, nw, rh, rl, rh1, rl1) \ argument
198 for (i = 0; i < nw; i += 8) { \
253 #define nh_16(mp, kp, nw, rh, rl) \ argument
258 for (i = 0; i < nw; i += 2) { \
[all …]
/Linux-v5.4/drivers/md/
Ddm-cache-background-tracker.c80 struct bt_work *nw) in __insert_pending() argument
90 cmp = cmp_oblock(w->work.oblock, nw->work.oblock); in __insert_pending()
102 rb_link_node(&nw->node, parent, new); in __insert_pending()
103 rb_insert_color(&nw->node, &b->pending); in __insert_pending()
/Linux-v5.4/fs/jfs/
Djfs_dmap.c1115 int dbitno, word, rembits, nb, nwords, wbitno, nw; in dbAllocNext() local
1202 nw = BUDSIZE(l2size, BUDMIN); in dbAllocNext()
1204 nwords -= nw; in dbAllocNext()
1205 word += nw; in dbAllocNext()
2167 int dbitno, word, rembits, nb, nwords, wbitno, nw, agno; in dbAllocBits() local
2238 for (; nwords > 0; nwords -= nw) { in dbAllocBits()
2262 nw = BUDSIZE(size, BUDMIN); in dbAllocBits()
2263 word += nw; in dbAllocBits()
2314 int dbitno, word, rembits, nb, nwords, wbitno, nw, agno; in dbFreeBits() local
2386 for (; nwords > 0; nwords -= nw) { in dbFreeBits()
[all …]
/Linux-v5.4/scripts/
Dget_maintainer.pl2429 my @nw = split(/[^A-Za-zÀ-ÿ\'\,\.\+-]/, $name);
2430 if (@nw > 2) {
2431 my $first = $nw[@nw - 3];
2432 my $middle = $nw[@nw - 2];
2433 my $last = $nw[@nw - 1];
/Linux-v5.4/drivers/infiniband/hw/qib/
Dqib_user_sdma.c817 size_t nw; in qib_user_sdma_queue_pkts() local
833 nw = len >> 2; in qib_user_sdma_queue_pkts()
858 pktnwc = nw - 1; in qib_user_sdma_queue_pkts()
/Linux-v5.4/arch/powerpc/kvm/
Dbook3s_64_mmu_hv.c1747 unsigned long i, nb, nw; in kvm_htab_read() local
1773 nw = nb; in kvm_htab_read()
1819 nw = nb; in kvm_htab_read()
1822 nb = nw; in kvm_htab_read()
/Linux-v5.4/Documentation/doc-guide/
Dsphinx.rst414 :alt: so-nw-arrow
425 :alt: so-nw-arrow
/Linux-v5.4/Documentation/translations/it_IT/doc-guide/
Dsphinx.rst443 :alt: so-nw-arrow
454 :alt: so-nw-arrow
/Linux-v5.4/drivers/infiniband/hw/hfi1/
Dsdma.c422 struct iowait *w, *nw; in sdma_flush() local
427 list_for_each_entry_safe(w, nw, &sde->dmawait, list) { in sdma_flush()
1767 struct iowait *wait, *nw, *twait; in sdma_desc_avail() local
1785 nw, in sdma_desc_avail()