/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_bo_list.h | 45 struct rcu_head rhead; member in struct:amdgpu_bo_list
|
/src/tests/lib/libc/sys/ |
t_futex_robust.c | 64 struct futex_robust_list_head rhead; member in struct:lwp_data 104 d->rhead.list.next = &d->rhead.list; 105 d->rhead.futex_offset = offsetof(struct futex_lock_pos, fword) - 107 d->rhead.pending_list = NULL; 109 if (__futex_set_robust_list(&d->rhead, sizeof(d->rhead)) != 0) { 120 pos_locks[i].list.next = d->rhead.list.next; 121 d->rhead.list.next = &pos_locks[i].list; 125 d->rhead.pending_list = &pos_locks[i].list [all...] |
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
ttm_object.h | 129 struct rcu_head rhead; member in struct:ttm_base_object 328 kfree_rcu(__object, __base.rhead) 355 kfree_rcu(__obj, __prime.base.rhead)
|
/src/sbin/routed/ |
table.c | 57 struct radix_node_head *rhead; /* root of the radix tree */ variable in typeref:struct:radix_node_head * 1507 (void)rn_walktree(rhead, walk_kern, 0); 1652 rn_inithead((void*)&rhead, 32); 1695 rt = (struct rt_entry *)rhead->rnh_lookup(&dst_sock,&mask_sock,rhead); 1711 return (struct rt_entry *)rhead->rnh_matchaddr(&dst_sock, rhead); 1761 if (0 == rhead->rnh_addaddr(&rt->rt_dst_sock, &mask_sock, 1762 rhead, rt->rt_nodes)) { 1886 if (rt != (struct rt_entry *)rhead->rnh_deladdr(&dst_sock, &mask_sock [all...] |
/src/sys/kern/ |
sys_futex.c | 1992 futex_fetch_robust_head(uintptr_t uaddr, u_long *rhead) 2007 rhead[i] = (int32_t)rhead32[i]; 2009 rhead[i] = rhead32[i]; 2017 return copyin((void *)uaddr, rhead, 2018 sizeof(*rhead) * _FUTEX_ROBUST_HEAD_NWORDS); 2075 u_long rhead[_FUTEX_ROBUST_HEAD_NWORDS]; local in function:futex_release_all_lwp 2086 error = futex_fetch_robust_head(l->l_robust_head, rhead); 2095 const long offset = (long)rhead[_FUTEX_ROBUST_HEAD_OFFSET]; 2100 futex_decode_robust_word(rhead[_FUTEX_ROBUST_HEAD_LIST], 2102 futex_decode_robust_word(rhead[_FUTEX_ROBUST_HEAD_PENDING] [all...] |