| /include/linux/ |
| A D | unroll.h | 57 #define __UNROLL_1(MACRO, args...) __UNROLL_0(MACRO, args) MACRO(0, args) argument 58 #define __UNROLL_2(MACRO, args...) __UNROLL_1(MACRO, args) MACRO(1, args) argument 59 #define __UNROLL_3(MACRO, args...) __UNROLL_2(MACRO, args) MACRO(2, args) argument 60 #define __UNROLL_4(MACRO, args...) __UNROLL_3(MACRO, args) MACRO(3, args) argument 61 #define __UNROLL_5(MACRO, args...) __UNROLL_4(MACRO, args) MACRO(4, args) argument 62 #define __UNROLL_6(MACRO, args...) __UNROLL_5(MACRO, args) MACRO(5, args) argument 63 #define __UNROLL_7(MACRO, args...) __UNROLL_6(MACRO, args) MACRO(6, args) argument 64 #define __UNROLL_8(MACRO, args...) __UNROLL_7(MACRO, args) MACRO(7, args) argument 65 #define __UNROLL_9(MACRO, args...) __UNROLL_8(MACRO, args) MACRO(8, args) argument 66 #define __UNROLL_10(MACRO, args...) __UNROLL_9(MACRO, args) MACRO(9, args) argument [all …]
|
| A D | tracepoint.h | 139 #define PARAMS(args...) args argument 179 #define TP_PROTO(args...) args argument 180 #define TP_ARGS(args...) args argument 181 #define TP_CONDITION(args...) args argument 209 #define __DO_TRACE_CALL(name, args) __traceiter_##name(NULL, args) argument 221 __do_trace_##name(args); \ 281 __do_trace_##name(args); \ 299 __do_trace_##name(args); \ 614 args, cond) \ argument 616 PARAMS(args), PARAMS(cond)) [all …]
|
| A D | atomic.h | 58 #define __atomic_op_acquire(op, args...) \ argument 60 typeof(op##_relaxed(args)) __ret = op##_relaxed(args); \ 65 #define __atomic_op_release(op, args...) \ argument 68 op##_relaxed(args); \ 71 #define __atomic_op_fence(op, args...) \ argument 73 typeof(op##_relaxed(args)) __ret; \ 75 __ret = op##_relaxed(args); \
|
| A D | min_heap.h | 48 bool (*less)(const void *lhs, const void *rhs, void *args); 49 void (*swp)(void *lhs, void *rhs, void *args); 258 const struct min_heap_callbacks *func, void *args) in __min_heap_sift_down_inline() argument 273 b = func->less(data + c, data + d, args) ? c : d; in __min_heap_sift_down_inline() 280 while (b != a && func->less(data + a, data + b, args)) in __min_heap_sift_down_inline() 287 do_swap(data + b, data + c, elem_size, swp, args); in __min_heap_sift_down_inline() 311 if (func->less(data + b, data + a, args)) in __min_heap_sift_up_inline() 313 do_swap(data + a, data + b, elem_size, swp, args); in __min_heap_sift_up_inline() 366 const struct min_heap_callbacks *func, void *args) in __min_heap_pop_push_inline() argument 437 const struct min_heap_callbacks *func, void *args); [all …]
|
| A D | sprintf.h | 14 __printf(3, 0) int vsnprintf(char *buf, size_t size, const char *fmt, va_list args); 16 __printf(3, 0) int vscnprintf(char *buf, size_t size, const char *fmt, va_list args); 18 __printf(2, 0) __malloc char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); 19 __printf(2, 0) const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list args);
|
| A D | lsm_count.h | 109 #define __COUNT_LSMS(skipped_arg, args...) COUNT_ARGS(args...) argument 110 #define COUNT_LSMS(args...) __COUNT_LSMS(args) argument
|
| A D | async_tx.h | 146 init_async_submit(struct async_submit_ctl *args, enum async_tx_flags flags, in init_async_submit() argument 151 args->flags = flags; in init_async_submit() 152 args->depend_tx = tx; in init_async_submit() 153 args->cb_fn = cb_fn; in init_async_submit() 154 args->cb_param = cb_param; in init_async_submit() 155 args->scribble = scribble; in init_async_submit()
|
| A D | pwm.h | 113 struct pwm_args args; member 171 struct pwm_args *args) in pwm_get_args() argument 173 *args = pwm->args; in pwm_get_args() 196 struct pwm_args args; in pwm_init_state() local 202 pwm_get_args(pwm, &args); in pwm_init_state() 204 state->period = args.period; in pwm_init_state() 205 state->polarity = args.polarity; in pwm_init_state() 339 const struct of_phandle_args *args); 492 const struct of_phandle_args *args); 637 state.polarity = pwm->args.polarity; in pwm_apply_args() [all …]
|
| A D | netlink.h | 111 #define NL_SET_ERR_MSG_FMT(extack, fmt, args...) do { \ argument 117 "%s" fmt "%s", "", ##args, "") >= \ 120 ##args, "\n"); \ 130 #define NL_SET_ERR_MSG_FMT_MOD(extack, fmt, args...) \ argument 131 NL_SET_ERR_MSG_FMT((extack), KBUILD_MODNAME ": " fmt, ##args) 165 #define NL_SET_ERR_MSG_ATTR_POL_FMT(extack, attr, pol, fmt, args...) do { \ argument 172 "%s" fmt "%s", "", ##args, "") >= \ 175 ##args, "\n"); \ 187 #define NL_SET_ERR_MSG_ATTR_FMT(extack, attr, msg, args...) \ argument 188 NL_SET_ERR_MSG_ATTR_POL_FMT(extack, attr, NULL, msg, ##args) [all …]
|
| /include/trace/ |
| A D | define_trace.h | 28 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 34 PARAMS(args), \ 61 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 69 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 76 #define DECLARE_TRACE(name, proto, args) \ argument 84 #define DECLARE_TRACE_EVENT(name, proto, args) \ argument 85 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 89 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 94 #define DEFINE_RUST_DO_TRACE(name, proto, args) \ argument 122 #define DECLARE_TRACE(name, proto, args) argument [all …]
|
| A D | bpf_probe.h | 45 #define __BPF_DECLARE_TRACE(call, proto, args) \ argument 49 CONCATENATE(bpf_trace_run, COUNT_ARGS(args))(__data, CAST_TO_U64(args)); \ 54 __BPF_DECLARE_TRACE(call, PARAMS(proto), PARAMS(args)) 56 #define __BPF_DECLARE_TRACE_SYSCALL(call, proto, args) \ argument 62 CONCATENATE(bpf_trace_run, COUNT_ARGS(args))(__data, CAST_TO_U64(args)); \ 89 .num_args = COUNT_ARGS(args), \ 104 (void)BUILD_BUG_ON_ZERO(size != sizeof(*FIRST(args))); \ 113 #define DEFINE_EVENT(template, call, proto, args) \ argument 118 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) 121 #define DECLARE_TRACE(call, proto, args) \ argument [all …]
|
| A D | trace_events.h | 42 PARAMS(args), \ 46 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args)); 52 PARAMS(args), \ 56 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args)); 74 #define DEFINE_EVENT(template, name, proto, args) \ argument 88 #define TRACE_EVENT_FN(name, proto, args, tstruct, \ argument 90 TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \ 137 #define DEFINE_EVENT(template, name, proto, args) argument 439 do_trace_event_raw_event_##call(__data, args); \ 451 do_trace_event_raw_event_##call(__data, args); \ [all …]
|
| A D | perf.h | 16 #define __DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 31 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \ 65 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 66 __DECLARE_EVENT_CLASS(call, PARAMS(proto), PARAMS(args), PARAMS(tstruct), \ 74 do_perf_trace_##call(__data, args); \ 78 #define DECLARE_EVENT_SYSCALL_CLASS(call, proto, args, tstruct, assign, print) \ argument 79 __DECLARE_EVENT_CLASS(call, PARAMS(proto), PARAMS(args), PARAMS(tstruct), \ 89 do_perf_trace_##call(__data, args); \ 99 #define DEFINE_EVENT(template, call, proto, args) \ argument 107 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument [all …]
|
| A D | trace_custom_events.h | 27 #define TRACE_CUSTOM_EVENT(name, proto, args, tstruct, assign, print) \ argument 30 PARAMS(args), \ 34 DEFINE_CUSTOM_EVENT(name, name, PARAMS(proto), PARAMS(args)); 41 #define DECLARE_CUSTOM_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ argument 51 #define DEFINE_CUSTOM_EVENT(template, name, proto, args) \ argument 62 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 68 #define DEFINE_CUSTOM_EVENT(template, name, proto, args) argument 77 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 108 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, func, print) \ argument 175 #define DEFINE_CUSTOM_EVENT(template, call, proto, args) \ argument [all …]
|
| /include/net/ |
| A D | net_debug.h | 55 #define netdev_dbg(__dev, format, args...) \ argument 57 dynamic_netdev_dbg(__dev, format, ##args); \ 60 #define netdev_dbg(__dev, format, args...) \ argument 61 netdev_printk(KERN_DEBUG, __dev, format, ##args) 63 #define netdev_dbg(__dev, format, args...) \ argument 74 #define netdev_vdbg(dev, format, args...) \ argument 87 netdev_printk(level, (dev), fmt, ##args); \ 93 netdev_##level(dev, fmt, ##args); \ 101 netif_level(crit, priv, type, dev, fmt, ##args) 103 netif_level(err, priv, type, dev, fmt, ##args) [all …]
|
| A D | handshake.h | 36 int tls_client_hello_anon(const struct tls_handshake_args *args, gfp_t flags); 37 int tls_client_hello_x509(const struct tls_handshake_args *args, gfp_t flags); 38 int tls_client_hello_psk(const struct tls_handshake_args *args, gfp_t flags); 39 int tls_server_hello_x509(const struct tls_handshake_args *args, gfp_t flags); 40 int tls_server_hello_psk(const struct tls_handshake_args *args, gfp_t flags);
|
| /include/trace/events/ |
| A D | syscalls.h | 26 __array( unsigned long, args, 6 ) 31 syscall_get_arguments(current, regs, __entry->args); 36 __entry->args[0], __entry->args[1], __entry->args[2], 37 __entry->args[3], __entry->args[4], __entry->args[5]),
|
| A D | pwm.h | 11 #define TP_PROTO_pwm(args...) \ argument 12 TP_PROTO(struct pwm_device *pwm, args) 14 #define TP_ARGS_pwm(args...) \ argument 15 TP_ARGS(pwm, args) 17 #define TP_STRUCT__entry_pwm(args...) \ argument 21 args) 23 #define TP_fast_assign_pwm(args...) \ argument 27 args) 29 #define TP_printk_pwm(fmt, args...) \ argument 30 TP_printk("pwmchip%u.%u: " fmt, __entry->chipid, __entry->hwpwm, args)
|
| A D | bpf_test_run.h | 46 #define BPF_TEST_RUN_DEFINE_EVENT(template, call, proto, args, size) \ argument 48 PARAMS(args), size) 51 #define BPF_TEST_RUN_DEFINE_EVENT(template, call, proto, args, size) \ argument 52 DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args))
|
| A D | xen.h | 46 memcpy(__entry->args, mc->args, sizeof(ulong) * nargs); 51 __entry->args[0], __entry->args[1], __entry->args[2], 52 __entry->args[3], __entry->args[4], __entry->args[5]) 56 TP_PROTO(size_t args), 57 TP_ARGS(args), 59 __field(size_t, args) 61 TP_fast_assign(__entry->args = args), 115 TP_ARGS(op, args, res), 118 __field(size_t, args) 122 __entry->args = args; [all …]
|
| A D | nbd.h | 85 #define NBD_DEFINE_EVENT(template, call, proto, args, size) \ argument 87 PARAMS(args), size) 90 #define NBD_DEFINE_EVENT(template, call, proto, args, size) \ argument 91 DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args))
|
| /include/media/ |
| A D | v4l2-device.h | 297 (sd)->ops->o->f((sd) , ##args); \ 318 #define __v4l2_device_call_subdevs(v4l2_dev, cond, o, f, args...) \ argument 323 f , ##args); \ 356 __err = (sd)->ops->o->f((sd) , ##args); \ 389 f , ##args); \ 412 #define v4l2_device_call_all(v4l2_dev, grpid, o, f, args...) \ argument 418 ##args); \ 445 #define v4l2_device_call_until_err(v4l2_dev, grpid, o, f, args...) \ argument 450 ##args); \ 478 f , ##args); \ [all …]
|
| /include/linux/framer/ |
| A D | framer-provider.h | 95 const struct of_phandle_args *args); 120 const struct of_phandle_args *args); 125 const struct of_phandle_args *args)); 132 const struct of_phandle_args *args)); 156 const struct of_phandle_args *args) in framer_provider_simple_of_xlate() argument 164 const struct of_phandle_args *args)) in __framer_provider_of_register() argument 176 const struct of_phandle_args *args)) in __devm_framer_provider_of_register() argument
|
| /include/kunit/ |
| A D | static_stub.h | 14 #define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) do {} while (0) argument 59 #define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) \ argument 71 return replacement(args); \
|
| /include/uapi/linux/netfilter/ |
| A D | x_tables.h | 129 #define XT_MATCH_ITERATE(type, e, fn, args...) \ argument 140 __ret = fn(__m , ## args); \ 148 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \ argument 160 __ret = fn(__entry , ## args); \ 168 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \ argument 169 XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
|