/src/sys/external/bsd/drm2/linux/ |
linux_irq_work.c | 63 struct irq_work *iw, *next; local in function:irq_work_intr 72 SIMPLEQ_FOREACH_SAFE(iw, &todo, iw_entry, next) { 73 atomic_store_relaxed(&iw->iw_flags, 0); 74 (*iw->func)(iw); 117 init_irq_work(struct irq_work *iw, void (*func)(struct irq_work *)) 120 iw->iw_flags = 0; 121 iw->func = func; 125 irq_work_queue(struct irq_work *iw) 129 if (atomic_swap_uint(&iw->iw_flags, IRQ_WORK_PENDING [all...] |
/src/lib/libm/src/ |
e_asinf.c | 77 int32_t iw; local in function:__ieee754_asinf 79 GET_FLOAT_WORD(iw,w); 80 SET_FLOAT_WORD(w,iw&0xfffff000);
|
/src/games/hack/ |
hack.c | 497 int iw = inv_weight(); local in function:pickup 501 if (iw + weight(obj) > 0)
|
/src/common/lib/libc/hash/sha3/ |
sha3.c | 109 unsigned iw; local in function:sha3_init 112 for (iw = 0; iw < 25; iw++) 113 C->A[iw] = 0; 120 unsigned ib, iw; /* index of byte/word */ local in function:sha3_update 148 for (iw = 0; iw < MIN(len, C->nb)/8; iw++) 149 C->A[rw - C->nb/8 + iw] ^= le64dec(data + 8*iw) 198 unsigned nw, iw; local in function:sha3_final 233 unsigned nw, iw; local in function:shake_final [all...] |
/src/sys/netinet/ |
tcp_usrreq.c | 1816 u_int iw; local in function:sysctl_tcp_init_win 1819 iw = *(u_int *)rnode->sysctl_data; 1821 node.sysctl_data = &iw; 1822 node.sysctl_size = sizeof(iw); 1827 if (iw >= __arraycount(tcp_init_win_max)) 1829 *(u_int *)rnode->sysctl_data = iw;
|
/src/sbin/nvmectl/ |
bignum.c | 3484 int ix, iy, iw; local in function:mp_reduce_is_2k 3496 iw = 1; 3500 if ((a->dp[iw] & iz) == 0) { 3505 ++iw;
|