| /include/trace/stages/ |
| D | stage4_event_fields.h | 8 #define __field_ext(_type, _item, _filter_type) { \ argument 9 .type = #_type, .name = #_item, \ 10 .size = sizeof(_type), .align = ALIGN_STRUCTFIELD(_type), \ 11 .is_signed = is_signed_type(_type), .filter_type = _filter_type }, 14 #define __field_struct_ext(_type, _item, _filter_type) { \ argument 15 .type = #_type, .name = #_item, \ 16 .size = sizeof(_type), .align = ALIGN_STRUCTFIELD(_type), \ 26 #define __array(_type, _item, _len) { \ argument 27 .type = #_type"["__stringify(_len)"]", .name = #_item, \ 28 .size = sizeof(_type[_len]), .align = ALIGN_STRUCTFIELD(_type), \ [all …]
|
| /include/linux/ |
| D | cleanup.h | 197 #define DEFINE_FREE(_name, _type, _free) \ argument 198 static inline void __free_##_name(void *p) { _type _T = *(_type *)p; _free; } 243 #define DEFINE_CLASS(_name, _type, _exit, _init, _init_args...) \ argument 244 typedef _type class_##_name##_t; \ 245 static inline void class_##_name##_destructor(_type *p) \ 246 { _type _T = *p; _exit; } \ 247 static inline _type class_##_name##_constructor(_init_args) \ 248 { _type t = _init; return t; } 294 #define DEFINE_GUARD(_name, _type, _lock, _unlock) \ argument 296 DEFINE_CLASS(_name, _type, if (_T) { _unlock; }, ({ _lock; _T; }), _type _T); \ [all …]
|
| D | gunyah.h | 124 #define MODULE_ALIAS_GUNYAH_VM_FUNCTION(_type, _idx) \ argument 127 BUILD_BUG_ON(_type != _idx); \ 131 #define DECLARE_GUNYAH_VM_FUNCTION(_name, _type, _bind, _unbind, _compare) \ argument 133 .type = _type, \ 145 #define DECLARE_GUNYAH_VM_FUNCTION_INIT(_name, _type, _idx, _bind, _unbind, \ argument 147 DECLARE_GUNYAH_VM_FUNCTION(_name, _type, _bind, _unbind, _compare); \ 149 MODULE_ALIAS_GUNYAH_VM_FUNCTION(_type, _idx)
|
| D | min_heap.h | 16 #define MIN_HEAP_PREALLOCATED(_type, _name, _nr) \ argument 20 _type *data; \ 21 _type preallocated[_nr]; \ 24 #define DEFINE_MIN_HEAP(_type, _name) MIN_HEAP_PREALLOCATED(_type, _name, 0) argument
|
| D | generic-radix-tree.h | 128 #define GENRADIX(_type) \ argument 131 _type type[0] __aligned(1); \ 134 #define DEFINE_GENRADIX(_name, _type) \ argument 135 GENRADIX(_type) _name = __GENRADIX_INITIALIZER
|
| D | moduleparam.h | 28 #define __MODULE_PARM_TYPE(name, _type) \ argument 29 __MODULE_INFO(parmtype, name##type, #name ":" _type)
|
| D | genl_magic_func.h | 37 #define __field(attr_nr, attr_flag, name, nla_type, _type, __get, \ argument 42 #define __array(attr_nr, attr_flag, name, nla_type, _type, maxlen, \ argument
|
| D | compat.h | 235 u32 _type; member
|
| D | syscalls.h | 774 asmlinkage long sys_add_key(const char __user *_type, 779 asmlinkage long sys_request_key(const char __user *_type,
|
| /include/rdma/ |
| D | uverbs_std_types.h | 24 #define uobj_get_read(_type, _id, _attrs) \ argument 25 rdma_lookup_get_uobject(uobj_get_type(_attrs, _type), (_attrs)->ufile, \ 29 #define ufd_get_read(_type, _fdnum, _attrs) \ argument 30 rdma_lookup_get_uobject(uobj_get_type(_attrs, _type), (_attrs)->ufile, \ 40 #define uobj_get_obj_read(_object, _type, _id, _attrs) \ argument 42 uobj_get_read(_type, _id, _attrs))) 44 #define uobj_get_write(_type, _id, _attrs) \ argument 45 rdma_lookup_get_uobject(uobj_get_type(_attrs, _type), (_attrs)->ufile, \ 51 #define uobj_perform_destroy(_type, _id, _attrs) \ argument 52 __uobj_perform_destroy(uobj_get_type(_attrs, _type), \ [all …]
|
| D | uverbs_ioctl.h | 460 #define UVERBS_ATTR_TYPE(_type) \ argument 461 .u.ptr.min_len = sizeof(_type), .u.ptr.len = sizeof(_type) 468 #define UVERBS_ATTR_STRUCT(_type, _last) \ argument 470 UVERBS_ATTR_SIZE(offsetofend(_type, _last), sizeof(_type)) 532 #define UVERBS_ATTR_PTR_IN(_attr_id, _type, ...) \ argument 536 _type, \ 539 #define UVERBS_ATTR_PTR_OUT(_attr_id, _type, ...) \ argument 543 _type, \
|
| /include/drm/ |
| D | drm_kunit_helpers.h | 48 #define drm_kunit_helper_alloc_drm_device_with_driver(_test, _dev, _type, _member, _drv) \ argument 49 ((_type *)__drm_kunit_helper_alloc_drm_device_with_driver(_test, _dev, \ 50 sizeof(_type), \ 51 offsetof(_type, _member), \ 93 #define drm_kunit_helper_alloc_drm_device(_test, _dev, _type, _member, _feat) \ argument 94 ((_type *)__drm_kunit_helper_alloc_drm_device(_test, _dev, \ 95 sizeof(_type), \ 96 offsetof(_type, _member), \
|
| /include/uapi/rdma/ |
| D | rvt-abi.h | 14 #define RDMA_ATOMIC_UAPI(_type, _name) struct{ _type val; } _name argument
|
| D | ib_user_ioctl_verbs.h | 41 #define RDMA_UAPI_PTR(_type, _name) __aligned_u64 _name argument
|
| /include/linux/usb/ |
| D | renesas_usbhs.h | 104 #define RENESAS_USBHS_PIPE(_type, _size, _num, _double_buf) { \ argument 105 .type = (_type), \
|
| D | gadget.h | 190 #define USB_EP_CAPS(_type, _dir) \ argument 192 .type_control = !!(_type & USB_EP_CAPS_TYPE_CONTROL), \ 193 .type_iso = !!(_type & USB_EP_CAPS_TYPE_ISO), \ 194 .type_bulk = !!(_type & USB_EP_CAPS_TYPE_BULK), \ 195 .type_int = !!(_type & USB_EP_CAPS_TYPE_INT), \
|
| /include/net/sctp/ |
| D | constants.h | 123 #define SCTP_SUBTYPE_CONSTRUCTOR(_name, _type, _elt) \ argument 125 SCTP_ST_## _name (_type _arg) \
|
| /include/uapi/asm-generic/ |
| D | siginfo.h | 96 __u32 _type; member 162 #define si_perf_type _sifields._sigfault._perf._type
|
| /include/linux/soc/mediatek/ |
| D | mtk_wed.h | 296 #define mtk_wed_device_setup_tc(_dev, _netdev, _type, _type_data) \ argument 297 (_dev)->ops->setup_tc(_dev, _netdev, _type, _type_data) 325 #define mtk_wed_device_setup_tc(_dev, _netdev, _type, _type_data) -EOPNOTSUPP argument
|
| /include/linux/iio/imu/ |
| D | adis.h | 456 #define ADIS_MOD_CHAN(_type, mod, addr, si, info_sep, info_all, bits) { \ argument 457 .type = (_type), \
|
| /include/net/ |
| D | devlink.h | 592 #define DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, _get, _set, _validate) \ argument 596 .type = _type, \ 1220 #define DEVLINK_TRAP_GENERIC(_type, _init_action, _id, _group_id, \ argument 1223 .type = DEVLINK_TRAP_TYPE_##_type, \ 1232 #define DEVLINK_TRAP_DRIVER(_type, _init_action, _id, _name, _group_id, \ argument 1235 .type = DEVLINK_TRAP_TYPE_##_type, \
|
| D | dsa.h | 1257 #define DSA_DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes) \ argument 1258 DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, \
|