Symbol: typeof
lib/libpmc/pmu-events/json.h
33
const typeof(y) __y = y; \
lib/libpmc/pmu-events/list.h
161
list_entry(((ptr)->member.next), typeof(*(ptr)), member)
lib/libpmc/pmu-events/list.h
167
list_entry(((ptr)->member.prev), typeof(*(ptr)), member)
lib/libpmc/pmu-events/list.h
176
for (p = list_entry((h)->next, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
177
p = list_entry((p)->field.next, typeof(*p), field))
lib/libpmc/pmu-events/list.h
180
for (p = list_entry((h)->next, typeof(*p), field), \
lib/libpmc/pmu-events/list.h
181
n = list_entry((p)->field.next, typeof(*p), field); &(p)->field != (h);\
lib/libpmc/pmu-events/list.h
182
p = n, n = list_entry(n->field.next, typeof(*n), field))
lib/libpmc/pmu-events/list.h
186
p = list_entry((p)->field.next, typeof(*p), field))
lib/libpmc/pmu-events/list.h
193
for (n = list_entry((pos)->member.next, typeof(*pos), member); \
lib/libpmc/pmu-events/list.h
195
pos = n, n = list_entry(n->member.next, typeof(*n), member))
lib/libpmc/pmu-events/list.h
198
for (p = list_entry((h)->prev, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
199
p = list_entry((p)->field.prev, typeof(*p), field))
lib/libpmc/pmu-events/list.h
202
for (p = list_entry((h)->prev, typeof(*p), field), \
lib/libpmc/pmu-events/list.h
203
n = list_entry((p)->field.prev, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
204
p = n, n = list_entry(n->field.prev, typeof(*n), field))
lib/libpmc/pmu-events/list.h
207
for (p = list_entry((p)->field.prev, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
208
p = list_entry((p)->field.prev, typeof(*p), field))
lib/libpmc/pmu-events/list.h
434
for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\
lib/libpmc/pmu-events/list.h
436
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
lib/libpmc/pmu-events/list.h
439
for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member); \
lib/libpmc/pmu-events/list.h
441
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
lib/libpmc/pmu-events/list.h
445
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
lib/libpmc/pmu-events/list.h
448
for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member); \
lib/libpmc/pmu-events/list.h
450
pos = hlist_entry_safe(n, typeof(*(pos)), member))
lib/msun/src/math_private.h
485
typeof(x) __t1; \
lib/msun/src/math_private.h
508
volatile typeof(x) __t1; \
lib/msun/src/math_private.h
509
typeof(x) __t2; \
lib/msun/src/math_private.h
523
typeof(xh) __s1, __s2, __s3, __s4, __s5, __s6; \
lib/msun/src/math_private.h
536
typeof(x) __xh, __xl, __yh, __yl; \
lib/msun/src/math_private.h
537
typeof(x) __t1; \
sys/arm64/arm64/kexec_support.c
153
typeof(kexec_reboot_bottom) *p = (void *)ptr;
sys/compat/linuxkpi/common/include/asm/barrier.h
62
#define smp_load_acquire(p) ({ typeof(*p) _v = READ_ONCE(*p); smp_mb(); _v; })
sys/compat/linuxkpi/common/include/linux/bitfield.h
129
(!(((typeof(_mask))(_value) << __bf_shf(_mask)) & ~(_mask)))
sys/compat/linuxkpi/common/include/linux/bitfield.h
132
(((typeof(_mask))(_value) << __bf_shf(_mask)) & (_mask))
sys/compat/linuxkpi/common/include/linux/bitfield.h
136
(((typeof(_mask))(_value) << __bf_shf(_mask)) & (_mask))
sys/compat/linuxkpi/common/include/linux/bitfield.h
139
((typeof(_mask))(((_value) & (_mask)) >> __bf_shf(_mask)))
sys/compat/linuxkpi/common/include/linux/compiler_types.h
43
#define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b))
sys/compat/linuxkpi/common/include/linux/container_of.h
46
const typeof(*(ptr)) *: \
sys/compat/linuxkpi/common/include/linux/ieee80211.h
1150
if (skb->len < offsetofend(typeof(*mgmt), u.action.u.ftm.public_action))
sys/compat/linuxkpi/common/include/linux/ieee80211.h
1317
if (skb->len < offsetofend(typeof(*mgmt), u.action.category))
sys/compat/linuxkpi/common/include/linux/ieee80211.h
1343
if (skb->len < offsetofend(typeof(*mgmt), u.action.u.ftm.public_action))
sys/compat/linuxkpi/common/include/linux/ieee80211.h
1363
if (skb->len < offsetofend(typeof(*mgmt), u.action.u.wnm_timing_msr.wnm_action))
sys/compat/linuxkpi/common/include/linux/interrupt.h
180
container_of(_t, typeof(*(_dev)), _field)
sys/compat/linuxkpi/common/include/linux/list.h
177
list_entry(((ptr)->member.next), typeof(*(ptr)), member)
sys/compat/linuxkpi/common/include/linux/list.h
183
list_entry(((ptr)->member.prev), typeof(*(ptr)), member)
sys/compat/linuxkpi/common/include/linux/list.h
192
for (p = list_entry((h)->next, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
193
p = list_entry((p)->field.next, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
196
for (p = list_entry((h)->next, typeof(*p), field), \
sys/compat/linuxkpi/common/include/linux/list.h
197
n = list_entry((p)->field.next, typeof(*p), field); &(p)->field != (h);\
sys/compat/linuxkpi/common/include/linux/list.h
198
p = n, n = list_entry(n->field.next, typeof(*n), field))
sys/compat/linuxkpi/common/include/linux/list.h
202
p = list_entry((p)->field.next, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
209
for (n = list_entry((pos)->member.next, typeof(*pos), member); \
sys/compat/linuxkpi/common/include/linux/list.h
211
pos = n, n = list_entry(n->member.next, typeof(*n), member))
sys/compat/linuxkpi/common/include/linux/list.h
214
for (p = list_entry((h)->prev, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
215
p = list_entry((p)->field.prev, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
218
for (p = list_entry((h)->prev, typeof(*p), field), \
sys/compat/linuxkpi/common/include/linux/list.h
219
n = list_entry((p)->field.prev, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
220
p = n, n = list_entry(n->field.prev, typeof(*n), field))
sys/compat/linuxkpi/common/include/linux/list.h
223
for (p = list_entry((p)->field.prev, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
224
p = list_entry((p)->field.prev, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
503
for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\
sys/compat/linuxkpi/common/include/linux/list.h
505
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/list.h
508
for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member); \
sys/compat/linuxkpi/common/include/linux/list.h
510
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/list.h
514
pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/list.h
517
for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member); \
sys/compat/linuxkpi/common/include/linux/list.h
519
pos = hlist_entry_safe(n, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/minmax.h
68
#define clamp_val(val, lo, hi) clamp_t(typeof(val), val, lo, hi)
sys/compat/linuxkpi/common/include/linux/minmax.h
82
typeof(array[0]) __val = array[0]; \
sys/compat/linuxkpi/common/include/linux/minmax.h
83
for (typeof(len) __i = 1; __i < len; __i++) \
sys/compat/linuxkpi/common/include/linux/overflow.h
138
typeof(var) *__ptr = &(var); \
sys/compat/linuxkpi/common/include/linux/overflow.h
139
*__ptr = wrapping_sub(typeof(var), *__ptr, offset); \
sys/compat/linuxkpi/common/include/linux/overflow.h
193
typeof(a) _a = a; \
sys/compat/linuxkpi/common/include/linux/overflow.h
194
typeof(s) _s = s; \
sys/compat/linuxkpi/common/include/linux/overflow.h
195
typeof(d) _d = d; \
sys/compat/linuxkpi/common/include/linux/overflow.h
205
is_unsigned_type(typeof(x)) ? \
sys/compat/linuxkpi/common/include/linux/overflow.h
207
is_unsigned_type(typeof(T)) ? \
sys/compat/linuxkpi/common/include/linux/overflow.h
212
typeof(T) v = 0; \
sys/compat/linuxkpi/common/include/linux/overflow.h
248
typeof(start) start__ = (start); \
sys/compat/linuxkpi/common/include/linux/overflow.h
249
typeof(size) size__ = (size); \
sys/compat/linuxkpi/common/include/linux/overflow.h
250
typeof(max) max__ = (max); \
sys/compat/linuxkpi/common/include/linux/overflow.h
283
typeof(start) start__ = (start); \
sys/compat/linuxkpi/common/include/linux/overflow.h
284
typeof(size) size__ = (size); \
sys/compat/linuxkpi/common/include/linux/overflow.h
285
typeof(max) max__ = (max); \
sys/compat/linuxkpi/common/include/linux/overflow.h
35
#define type_max(t) __type_max(typeof(t))
sys/compat/linuxkpi/common/include/linux/overflow.h
37
#define type_min(t) __type_min(typeof(t))
sys/compat/linuxkpi/common/include/linux/overflow.h
465
#define struct_offset(p, member) (offsetof(typeof(*(p)), member))
sys/compat/linuxkpi/common/include/linux/overflow.h
557
typeof(_Generic(__flex_counter(FAM), \
sys/compat/linuxkpi/common/include/linux/overflow.h
92
typeof(var) *__ptr = &(var); \
sys/compat/linuxkpi/common/include/linux/overflow.h
93
*__ptr = wrapping_add(typeof(var), *__ptr, offset); \
sys/compat/linuxkpi/common/include/linux/pci.h
260
#define PCI_SET_ERROR_RESPONSE(val) (*(val) = ((typeof(*(val))) PCI_ERROR_RESPONSE))
sys/compat/linuxkpi/common/include/linux/pci.h
261
#define PCI_POSSIBLE_ERROR(val) ((val) == ((typeof(val)) PCI_ERROR_RESPONSE))
sys/compat/linuxkpi/common/include/linux/rbtree.h
120
rb_entry_safe(rb_next_postorder(&x->member), typeof(*x), member), 1); \
sys/compat/linuxkpi/common/include/linux/rculist.h
110
typeof(*(pos)), member); \
sys/compat/linuxkpi/common/include/linux/rculist.h
113
&(pos)->member)), typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/rculist.h
41
for (pos = list_entry_rcu((head)->next, typeof(*(pos)), member); \
sys/compat/linuxkpi/common/include/linux/rculist.h
43
pos = list_entry_rcu((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/rculist.h
48
pos = list_entry_rcu((pos)->member.next, typeof(*(pos)), member))
sys/compat/linuxkpi/common/include/linux/rcupdate.h
140
typeof(ptr) __tmp = rcu_dereference_protected(rcu, c); \
sys/compat/linuxkpi/common/include/linux/rcupdate.h
146
typeof(ptr) p = rcu_dereference_protected(rcu, c); \
sys/compat/linuxkpi/common/include/linux/slab.h
170
kmalloc(sizeof(typeof(_p)), default_gfp(__VA_ARGS__))
sys/compat/linuxkpi/common/include/linux/slab.h
173
kmalloc(size_mul((_n) * sizeof(typeof(_p))), default_gfp(__VA_ARGS__))
sys/compat/linuxkpi/common/include/linux/slab.h
55
kzalloc(sizeof(typeof(_p)), default_gfp(__VA_ARGS__))
sys/compat/linuxkpi/common/include/linux/slab.h
57
kzalloc(size_mul((_n), sizeof(typeof(_p))), default_gfp(__VA_ARGS__))
sys/compat/linuxkpi/common/include/linux/slab.h
61
const size_t __psize = struct_size_t(typeof(_p), _field, __n); \
sys/compat/linuxkpi/common/include/linux/slab.h
62
typeof(_p) *__p_obj; \
sys/compat/linuxkpi/common/include/linux/string.h
361
size_t _o = offsetof(typeof(*(ptr)), smember); \
sys/compat/linuxkpi/common/include/linux/string.h
369
size_t _o = offsetofend(typeof(*(ptr)), smember); \
sys/compat/linuxkpi/common/include/linux/timer.h
54
container_of(arg, typeof(*(var)), field)
sys/compat/linuxkpi/common/include/linux/timer.h
57
container_of(arg, typeof(*(var)), field)
sys/compat/linuxkpi/common/include/linux/typecheck.h
32
typeof(x) __var2; \
sys/dev/bnxt/bnxt_re/bnxt_re.h
105
typeof(x) __x = (x); \
sys/dev/bnxt/bnxt_re/bnxt_re.h
106
typeof(y) __y = (y); \
sys/dev/bnxt/bnxt_re/qplib_fp.c
802
((offsetof(typeof(*srqe), data) + 15) >> 4);
sys/dev/bxe/ecore_sp.c
1358
list_entry((pos)->member.next, typeof(*(pos)), member)
sys/dev/drm2/drm_linux_list.h
283
p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
sys/dev/drm2/drm_linux_list.h
287
p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
sys/dev/drm2/drm_linux_list.h
290
for (; p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
sys/dev/drm2/drm_linux_list.h
295
tpos = hlist_entry((pos), typeof(*(tpos)), member); 1;}); \
sys/dev/enic/enic_compat.h
39
#define VNIC_ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
sys/dev/irdma/fbsd_kcompat.h
50
container_of(callback_tasklet, typeof(*var), tasklet_fieldname)
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
293
typeof(*next),
sys/dev/mlx4/mlx4_core/mlx4_alloc.c
399
typeof(*curr_node),
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1263
offsetof(typeof(filter), field) -\
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
452
resp.response_length = offsetof(typeof(resp), response_length) +
sys/dev/mlx4/mlx4_ib/mlx4_ib_mcg.c
545
group = container_of(delay, typeof(*group), timeout_work);
sys/dev/mlx4/mlx4_ib/mlx4_ib_mcg.c
652
group = container_of(work, typeof(*group), work);
sys/dev/mlx5/mlx5_core/fs_core.h
300
#define fs_get_obj(v, _node) {v = container_of((_node), typeof(*v), node); }
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
2393
typeof(*ns),
sys/dev/mlx5/mlx5_ib/mlx5_ib_ah.c
76
u32 min_resp_len = offsetof(typeof(resp), dmac) +
sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
152
counter_var = MLX5_GET_BE(typeof(counter_var), \
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1307
resp.response_length = min(offsetof(typeof(resp), response_length) +
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1364
if (field_avail(typeof(resp), cqe_version, udata->outlen))
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1367
if (field_avail(typeof(resp), cmds_supp_uhw, udata->outlen)) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1379
if (offsetofend(typeof(resp), hca_core_clock_offset) <= udata->outlen) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1389
if (offsetofend(typeof(resp), log_uar_size) <= udata->outlen)
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1392
if (offsetofend(typeof(resp), num_uars_per_page) <= udata->outlen)
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1395
if (offsetofend(typeof(resp), num_dyn_bfregs) <= udata->outlen) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1863
offsetof(typeof(filter), field) -\
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
707
if (field_avail(typeof(resp), tso_caps, uhw->outlen)) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
717
if (field_avail(typeof(resp), rss_caps, uhw->outlen)) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
732
if (field_avail(typeof(resp), tso_caps, uhw->outlen))
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
734
if (field_avail(typeof(resp), rss_caps, uhw->outlen))
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1513
resp.response_length = min(offsetof(typeof(resp), response_length) +
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
1388
min_resp_len = offsetof(typeof(resp), bfreg_index) + sizeof(resp.bfreg_index);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
1392
required_cmd_sz = offsetof(typeof(ucmd), reserved1) + sizeof(ucmd.reserved1);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4767
required_cmd_sz = offsetof(typeof(ucmd), reserved) + sizeof(ucmd.reserved);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4825
min_resp_len = offsetof(typeof(resp), reserved) + sizeof(resp.reserved);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4851
resp.response_length = offsetof(typeof(resp), response_length) +
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4909
min_resp_len = offsetof(typeof(resp), reserved) + sizeof(resp.reserved);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4943
resp.response_length = offsetof(typeof(resp), response_length) +
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4984
required_cmd_sz = offsetof(typeof(ucmd), reserved) + sizeof(ucmd.reserved);
sys/dev/qat/include/adf_cfg_device.h
43
typeof(id) id_ = (id); \
sys/dev/qat/include/adf_cfg_device.h
44
typeof(str) str_; \
sys/dev/qat/include/common/adf_accel_devices.h
527
typeof(srv) srv_ = (srv); \
sys/dev/qat/include/common/adf_accel_devices.h
536
typeof(accel_dev) dev = (accel_dev); \
sys/dev/qat/include/common/icp_qat_hal.h
165
typeof(handle) handle_ = (handle); \
sys/dev/qat/include/common/icp_qat_hal.h
166
typeof(csr) csr_ = (csr); \
sys/dev/qat/include/common/icp_qat_hal.h
167
typeof(val) val_ = (val); \
sys/dev/qat/include/common/icp_qat_hal.h
181
typeof(handle) handle_ = (handle); \
sys/dev/qat/include/common/icp_qat_hal.h
182
typeof(csr) csr_ = (csr); \
sys/dev/qat/qat_api/common/include/lac_sal.h
146
typeof(type) *process = NULL; \
sys/dev/qat/qat_api/common/include/lac_sal.h
149
(typeof(type) *)SalList_getObject(curr_element); \
sys/dev/qat/qat_api/common/include/lac_sal.h
94
typeof(type) *process = NULL; \
sys/dev/qat/qat_api/common/include/lac_sal.h
97
(typeof(type) *)SalList_getObject(curr_element); \
sys/dev/qat/qat_common/adf_cfg_bundle.h
18
typeof(bund) b = (bund); \
sys/dev/qat/qat_common/adf_cfg_bundle.h
19
typeof(index) i = (index); \
sys/dev/qat/qat_common/adf_cfg_bundle.h
20
typeof(base) s = (base); \
sys/dev/qat/qat_common/adf_cfg_bundle.h
21
typeof(stype) t = (stype); \
sys/dev/qat/qat_common/adf_cfg_bundle.h
22
typeof(rng_per_srv) rps = (rng_per_srv); \
sys/dev/qat/qat_common/adf_pfvf_vf_proto.c
13
#define FIELD_MAX(_mask) ({ (typeof(_mask))((_mask) >> __bf_shf(_mask)); })
sys/dev/qat/qat_common/adf_pfvf_vf_proto.c
16
({ ((typeof(_mask))(_val) << __bf_shf(_mask)) & (_mask); })
sys/dev/qat/qat_common/adf_pfvf_vf_proto.c
19
({ (typeof(_mask))(((_reg) & (_mask)) >> __bf_shf(_mask)); })
sys/net/route/nhop_utils.h
117
typeof(*(_head)->ptr) _tmp; \
sys/net/route/nhop_utils.h
147
typeof((_head)->ptr) _new_ptr = (void *)_new_void_ptr; \
sys/net/route/nhop_utils.h
148
typeof(*(_head)->ptr) _x, _y; \
sys/net/route/nhop_utils.h
58
#ifndef typeof
sys/netlink/netlink_ctl.h
56
#ifndef typeof
sys/netlink/netlink_ctl.h
63
for (typeof(_attr) _end = (typeof(_attr))_NLA_END(_start, _len), _attr = (_start); \
sys/ofed/drivers/infiniband/core/ib_multicast.c
437
group = container_of(work, typeof(*group), work);
sys/ofed/drivers/infiniband/core/ib_sa_query.c
1860
container_of(handler, typeof(*sa_dev), event_handler);
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_cq.c
65
typeof(*obj), uevent.uobject);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
1206
p = list_entry(priv->cm.start_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
1244
p = list_entry(priv->cm.reap_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
1327
p = list_entry(priv->cm.passive_ids.prev, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
184
p = list_entry(priv->cm.rx_flush_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
797
p = list_entry(priv->cm.passive_ids.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/sdp/sdp.h
420
sizeof(*tx_sa) - offsetof(typeof(*tx_sa), busy));
sys/ofed/include/rdma/uverbs_ioctl.h
941
type_min(typeof(*_to)), \
sys/ofed/include/rdma/uverbs_ioctl.h
942
type_max(typeof(*_to)), NULL); \
sys/ofed/include/rdma/uverbs_ioctl.h
953
type_min(typeof(*_to)), \
sys/ofed/include/rdma/uverbs_ioctl.h
954
type_max(typeof(*_to)), &_def_val); \
sys/ofed/include/rdma/uverbs_std_types.h
176
uflow = container_of(uobj, typeof(*uflow), uobject);
tools/tools/drm/radeon/mkregtable/mkregtable.c
28
const typeof(((type *)0)->member)*__mptr = (ptr); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
425
for (pos = list_entry((head)->next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
427
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
436
for (pos = list_entry((head)->prev, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
438
pos = list_entry(pos->member.prev, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
449
((pos) ? : list_entry(head, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
461
for (pos = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
463
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
475
for (pos = list_entry(pos->member.prev, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
477
pos = list_entry(pos->member.prev, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
489
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
499
for (pos = list_entry((head)->next, typeof(*pos), member), \
tools/tools/drm/radeon/mkregtable/mkregtable.c
500
n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
502
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
515
for (pos = list_entry(pos->member.next, typeof(*pos), member), \
tools/tools/drm/radeon/mkregtable/mkregtable.c
516
n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
518
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
531
for (n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
533
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
546
for (pos = list_entry((head)->prev, typeof(*pos), member), \
tools/tools/drm/radeon/mkregtable/mkregtable.c
547
n = list_entry(pos->member.prev, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
549
pos = n, n = list_entry(n->member.prev, typeof(*n), member))
usr.sbin/moused/moused/util.h
136
(typeof(*ptr_))_steal(ptr_)