Home
last modified time | relevance | path

Searched refs:_func (Results 1 – 11 of 11) sorted by relevance

/include/linux/
Dhwmon-sysfs.h24 #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
38 SENSOR_DEVICE_ATTR(_name, 0444, _func##_show, NULL, _index)
40 #define SENSOR_DEVICE_ATTR_RW(_name, _func, _index) \ argument
41 SENSOR_DEVICE_ATTR(_name, 0644, _func##_show, _func##_store, _index)
[all …]
Dstatic_call.h187 #define DEFINE_STATIC_CALL(name, _func) \ argument
188 DECLARE_STATIC_CALL(name, _func); \
190 .func = _func, \
193 ARCH_DEFINE_STATIC_CALL_TRAMP(name, _func)
195 #define DEFINE_STATIC_CALL_NULL(name, _func) \ argument
196 DECLARE_STATIC_CALL(name, _func); \
203 #define DEFINE_STATIC_CALL_RET0(name, _func) \ argument
204 DECLARE_STATIC_CALL(name, _func); \
234 #define DEFINE_STATIC_CALL(name, _func) \ argument
235 DECLARE_STATIC_CALL(name, _func); \
[all …]
Dirq_work.h23 #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
Dworkqueue.h286 #define __INIT_WORK_KEY(_work, _func, _onstack, _key) \ argument
292 (_work)->func = (_func); \
295 #define __INIT_WORK_KEY(_work, _func, _onstack, _key) \ argument
300 (_work)->func = (_func); \
304 #define __INIT_WORK(_work, _func, _onstack) \ argument
308 __INIT_WORK_KEY(_work, _func, _onstack, &__key); \
311 #define INIT_WORK(_work, _func) \ argument
312 __INIT_WORK((_work), (_func), 0)
314 #define INIT_WORK_ONSTACK(_work, _func) \ argument
315 __INIT_WORK((_work), (_func), 1)
[all …]
Dmin_heap.h111 #define min_heap_sift_down(_heap, _pos, _func, _args) \ argument
112 __min_heap_sift_down((min_heap_char *)_heap, _pos, __minheap_obj_size(_heap), _func, _args)
131 #define min_heap_sift_up(_heap, _idx, _func, _args) \ argument
132 __min_heap_sift_up((min_heap_char *)_heap, __minheap_obj_size(_heap), _idx, _func, _args)
145 #define min_heapify_all(_heap, _func, _args) \ argument
146 __min_heapify_all((min_heap_char *)_heap, __minheap_obj_size(_heap), _func, _args)
166 #define min_heap_pop(_heap, _func, _args) \ argument
167 __min_heap_pop((min_heap_char *)_heap, __minheap_obj_size(_heap), _func, _args)
184 #define min_heap_pop_push(_heap, _element, _func, _args) \ argument
185 __min_heap_pop_push((min_heap_char *)_heap, _element, __minheap_obj_size(_heap), _func, _args)
[all …]
Dsmp.h29 #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)); \
Dinterrupt.h700 #define DECLARE_TASKLET_OLD(name, _func) \ argument
703 .func = _func, \
706 #define DECLARE_TASKLET_DISABLED_OLD(name, _func) \ argument
709 .func = _func, \
Dbpf.h1354 .func = &_name##_func, \
1368 noinline __bpfcall unsigned int bpf_dispatcher_##name##_func( \
1375 EXPORT_SYMBOL(bpf_dispatcher_##name##_func); \
1380 unsigned int bpf_dispatcher_##name##_func( \
1386 #define BPF_DISPATCHER_FUNC(name) bpf_dispatcher_##name##_func
/include/drm/
Ddrm_ioctl.h151 #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \ argument
154 .func = _func, \
/include/dt-bindings/pinctrl/
Drzn1-pinctrl.h9 #define RZN1_PINMUX(_gpio, _func) \ argument
10 (((_func) << 8) | (_gpio))
/include/rdma/
Duverbs_ioctl.h366 #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, \