| /include/linux/ |
| A D | hwmon-sysfs.h | 24 #define SENSOR_ATTR_RO(_name, _func, _index) \ argument 25 SENSOR_ATTR(_name, 0444, _func##_show, NULL, _index) 27 #define SENSOR_ATTR_RW(_name, _func, _index) \ argument 28 SENSOR_ATTR(_name, 0644, _func##_show, _func##_store, _index) 30 #define SENSOR_ATTR_WO(_name, _func, _index) \ argument 31 SENSOR_ATTR(_name, 0200, NULL, _func##_store, _index) 37 #define SENSOR_DEVICE_ATTR_RO(_name, _func, _index) \ argument 40 #define SENSOR_DEVICE_ATTR_RW(_name, _func, _index) \ argument 41 SENSOR_DEVICE_ATTR(_name, 0644, _func##_show, _func##_store, _index) 63 SENSOR_ATTR_2(_name, 0644, _func##_show, _func##_store, _nr, _index) [all …]
|
| A D | static_call.h | 188 DECLARE_STATIC_CALL(name, _func); \ 190 .func = _func, \ 196 DECLARE_STATIC_CALL(name, _func); \ 204 DECLARE_STATIC_CALL(name, _func); \ 235 DECLARE_STATIC_CALL(name, _func); \ 237 .func = _func, \ 242 DECLARE_STATIC_CALL(name, _func); \ 249 DECLARE_STATIC_CALL(name, _func); \ 298 DECLARE_STATIC_CALL(name, _func); \ 304 __DEFINE_STATIC_CALL(name, _func, _func) [all …]
|
| A D | irq_work.h | 23 #define __IRQ_WORK_INIT(_func, _flags) (struct irq_work){ \ argument 25 .func = (_func), \ 29 #define IRQ_WORK_INIT(_func) __IRQ_WORK_INIT(_func, 0) argument 30 #define IRQ_WORK_INIT_LAZY(_func) __IRQ_WORK_INIT(_func, IRQ_WORK_LAZY) argument 31 #define IRQ_WORK_INIT_HARD(_func) __IRQ_WORK_INIT(_func, IRQ_WORK_HARD_IRQ) argument
|
| A D | workqueue.h | 289 (_work)->func = (_func); \ 297 (_work)->func = (_func); \ 308 #define INIT_WORK(_work, _func) \ argument 309 __INIT_WORK((_work), (_func), 0) 312 __INIT_WORK((_work), (_func), 1) 315 __INIT_WORK_KEY((_work), (_func), 1, _key) 319 INIT_WORK(&(_work)->work, (_func)); \ 334 __INIT_DELAYED_WORK(_work, _func, 0) 345 #define INIT_RCU_WORK(_work, _func) \ argument 346 INIT_WORK(&(_work)->work, (_func)) [all …]
|
| A D | min_heap.h | 293 __minheap_obj_size(_heap), _func, _args) 335 __minheap_obj_size(_heap), _func, _args) 357 __minheap_obj_size(_heap), _func, _args) 374 __minheap_obj_size(_heap), _func, _args) 400 __minheap_obj_size(_heap), _func, _args) 457 __minheap_obj_size(_heap), _func, _args) 461 #define min_heapify_all(_heap, _func, _args) \ argument 463 __minheap_obj_size(_heap), _func, _args) 464 #define min_heap_pop(_heap, _func, _args) \ argument 469 __minheap_obj_size(_heap), _func, _args) [all …]
|
| A D | smp.h | 29 #define CSD_INIT(_func, _info) \ argument 30 (struct __call_single_data){ .func = (_func), .info = (_info), } 36 #define INIT_CSD(_csd, _func, _info) \ argument 38 *(_csd) = CSD_INIT((_func), (_info)); \
|
| A D | interrupt.h | 718 #define DECLARE_TASKLET_OLD(name, _func) \ argument 721 .func = _func, \ 724 #define DECLARE_TASKLET_DISABLED_OLD(name, _func) \ argument 727 .func = _func, \
|
| A D | bpf.h | 1424 .func = &_name##_func, \ 1438 noinline __bpfcall unsigned int bpf_dispatcher_##name##_func( \ 1445 EXPORT_SYMBOL(bpf_dispatcher_##name##_func); \ 1450 unsigned int bpf_dispatcher_##name##_func( \ 1456 #define BPF_DISPATCHER_FUNC(name) bpf_dispatcher_##name##_func
|
| /include/drm/ |
| A D | drm_ioctl.h | 151 #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \ argument 154 .func = _func, \
|
| /include/dt-bindings/pinctrl/ |
| A D | rzn1-pinctrl.h | 9 #define RZN1_PINMUX(_gpio, _func) \ argument 10 (((_func) << 8) | (_gpio))
|
| /include/rdma/ |
| A D | uverbs_ioctl.h | 366 #define DECLARE_UVERBS_WRITE(_command_num, _func, _cmd_desc, ...) \ argument 371 .func_write = _func, \ 377 #define DECLARE_UVERBS_WRITE_EX(_command_num, _func, _cmd_desc, ...) \ argument 382 .func_write = _func, \ 418 #define UAPI_DEF_IS_OBJ_SUPPORTED(_func) \ argument 421 .scope = UAPI_SCOPE_OBJECT, .func_is_supported = _func, \
|