Symbol: CONCATENATE
arch/arm64/kvm/config.c
89
CONCATENATE(__NEEDS_FEAT_, COUNT_ARGS(__VA_ARGS__))(m, f, w, __VA_ARGS__)
arch/x86/include/asm/percpu.h
43
#define __percpu_seg_override CONCATENATE(__seg_, __percpu_seg)
arch/x86/include/asm/rmwcc.h
24
#define GEN_UNARY_RMWcc(X...) CONCATENATE(GEN_UNARY_RMWcc_, COUNT_ARGS(X))(X)
arch/x86/include/asm/rmwcc.h
33
#define GEN_BINARY_RMWcc(X...) CONCATENATE(GEN_BINARY_RMWcc_, COUNT_ARGS(X))(X)
drivers/gpu/drm/xe/tests/xe_args_test.c
228
KUNIT_EXPECT_TRUE(test, CONCATENATE(IF_ARGS(with, no, FOO_ARGS), _args));
drivers/gpu/drm/xe/tests/xe_args_test.c
229
KUNIT_EXPECT_FALSE(test, CONCATENATE(IF_ARGS(with, no, NO_ARGS), _args));
drivers/gpu/drm/xe/tests/xe_args_test.c
241
CALL_ARGS(CONCATENATE, IF_ARGS(FOO, MAX, FOO_ARGS), _ARGS)), X);
drivers/gpu/drm/xe/tests/xe_args_test.c
244
CALL_ARGS(CONCATENATE, IF_ARGS(FOO, MAX, NO_ARGS), _ARGS)), -1);
drivers/gpu/drm/xe/tests/xe_args_test.c
247
CALL_ARGS(CONCATENATE, IF_ARGS(FOO, MAX, FOO_ARGS), _ARGS)), 4);
drivers/gpu/drm/xe/tests/xe_args_test.c
250
CALL_ARGS(CONCATENATE, IF_ARGS(FOO, MAX, NO_ARGS), _ARGS)), 12);
drivers/gpu/drm/xe/xe_args.h
110
#define __PICK_ARG(n, args...) CALL_ARGS(CONCATENATE(PICK_ARG, n), args)
drivers/gpu/drm/xe/xe_args.h
145
#define __IF_ARGS(then, else, n) ___IF_ARGS(then, else, CALL_ARGS(CONCATENATE, ___IF_ARG, n))
drivers/gpu/drm/xe/xe_guc_klv_helpers.h
45
#define MAKE_GUC_KLV_KEY(TAG) CONCATENATE(CONCATENATE(GUC_KLV_, TAG), _KEY)
drivers/gpu/drm/xe/xe_guc_klv_helpers.h
51
#define MAKE_GUC_KLV_LEN(TAG) CONCATENATE(CONCATENATE(GUC_KLV_, TAG), _LEN)
drivers/gpu/drm/xe/xe_guc_klv_thresholds_set.h
18
MAKE_GUC_KLV_KEY(CONCATENATE(VF_CFG_THRESHOLD_, TAG))
drivers/gpu/drm/xe/xe_guc_klv_thresholds_set.h
25
MAKE_GUC_KLV_LEN(CONCATENATE(VF_CFG_THRESHOLD_, TAG))
drivers/gpu/drm/xe/xe_guc_klv_thresholds_set_types.h
56
CONCATENATE(XE_GUC_KLV_THRESHOLD_INDEX_, TAG)
drivers/gpu/drm/xe/xe_rtp_helpers.h
22
#define _XE_RTP_CONCAT(a, b) CONCATENATE(XE_RTP_, CONCATENATE(a, b))
drivers/iommu/generic_pt/fmt/iommu_template.h
20
CONCATENATE(CONCATENATE(PT_FMT, _), PT_FMT_VARIANT)
drivers/iommu/generic_pt/fmt/iommu_template.h
25
#define PTPFX CONCATENATE(PTPFX_RAW, _)
drivers/iommu/generic_pt/fmt/iommu_template.h
30
#define _PT_DEFS_H CONCATENATE(defs_, _PT_FMT_H)
drivers/iommu/generic_pt/iommu_pt.h
1218
#define pt_iommu_table_cfg CONCATENATE(pt_iommu_table, _cfg)
drivers/iommu/generic_pt/iommu_pt.h
1219
#define pt_iommu_init CONCATENATE(CONCATENATE(pt_iommu_, PTPFX), init)
drivers/iommu/generic_pt/iommu_pt.h
1280
#define pt_iommu_table_hw_info CONCATENATE(pt_iommu_table, _hw_info)
drivers/iommu/generic_pt/iommu_pt.h
1281
#define pt_iommu_hw_info CONCATENATE(CONCATENATE(pt_iommu_, PTPFX), hw_info)
drivers/iommu/generic_pt/iommu_pt.h
67
#define DOMAIN_NS(op) CONCATENATE(CONCATENATE(pt_iommu_, PTPFX), op)
drivers/iommu/generic_pt/kunit_iommu.h
14
#define pt_iommu_table_cfg CONCATENATE(pt_iommu_table, _cfg)
drivers/iommu/generic_pt/kunit_iommu.h
15
#define pt_iommu_init CONCATENATE(CONCATENATE(pt_iommu_, PTPFX), init)
drivers/iommu/generic_pt/pt_iter.h
18
#define NS(fn) CONCATENATE(PTPFX, fn)
drivers/iommu/generic_pt/pt_iter.h
579
return CONCATENATE(fn, 0)(range, arg, 0, table); \
drivers/iommu/generic_pt/pt_iter.h
581
return CONCATENATE(fn, 1)(range, arg, 1, table); \
drivers/iommu/generic_pt/pt_iter.h
583
return CONCATENATE(fn, 2)(range, arg, 2, table); \
drivers/iommu/generic_pt/pt_iter.h
585
return CONCATENATE(fn, 3)(range, arg, 3, table); \
drivers/iommu/generic_pt/pt_iter.h
587
return CONCATENATE(fn, 4)(range, arg, 4, table); \
drivers/iommu/generic_pt/pt_iter.h
588
return CONCATENATE(fn, 5)(range, arg, 5, table); \
drivers/iommu/generic_pt/pt_iter.h
627
__PT_MAKE_LEVEL_FN(CONCATENATE(fn, 0), 0, __pt_make_level_fn_err, \
drivers/iommu/generic_pt/pt_iter.h
629
__PT_MAKE_LEVEL_FN(CONCATENATE(fn, 1), 1, CONCATENATE(fn, 0), do_fn); \
drivers/iommu/generic_pt/pt_iter.h
630
__PT_MAKE_LEVEL_FN(CONCATENATE(fn, 2), 2, CONCATENATE(fn, 1), do_fn); \
drivers/iommu/generic_pt/pt_iter.h
631
__PT_MAKE_LEVEL_FN(CONCATENATE(fn, 3), 3, CONCATENATE(fn, 2), do_fn); \
drivers/iommu/generic_pt/pt_iter.h
632
__PT_MAKE_LEVEL_FN(CONCATENATE(fn, 4), 4, CONCATENATE(fn, 3), do_fn); \
drivers/iommu/generic_pt/pt_iter.h
633
__PT_MAKE_LEVEL_FN(CONCATENATE(fn, 5), 5, CONCATENATE(fn, 4), do_fn); \
drivers/staging/media/atomisp/pci/bits.h
12
#define _hrt_ones(n) CONCATENATE(_hrt_ones_, n)
drivers/staging/media/atomisp/pci/runtime/debug/src/ia_css_debug.c
856
(struct CONCATENATE(CONCATENATE(sh_css_isp_, type), _params) *) \
include/crypto/acompress.h
266
CONCATENATE(acomp_request_alloc_noprof_, COUNT_ARGS(__VA_ARGS__))( \
include/crypto/algapi.h
165
CONCATENATE(crypto_inst_setname_, COUNT_ARGS(__VA_ARGS__))( \
include/kunit/test.h
461
__kunit_init_test_suites(CONCATENATE(__UNIQUE_ID(array), _probe), \
include/linux/arm-smccc.h
621
CONCATENATE(__declare_arg_, \
include/linux/arm-smccc.h
625
: CONCATENATE(__constraint_read_, \
include/linux/arm-smccc.h
671
CONCATENATE(__declare_arg_, \
include/linux/arm-smccc.h
674
: CONCATENATE(__constraint_read_, \
include/linux/cleanup.h
416
#define DEFINE_GUARD_COND(X...) CONCATENATE(DEFINE_GUARD_COND_, COUNT_ARGS(X))(X)
include/linux/cleanup.h
582
#define DEFINE_LOCK_GUARD_1_COND(X...) CONCATENATE(DEFINE_LOCK_GUARD_1_COND_, COUNT_ARGS(X))(X)
include/linux/genl_magic_func.h
239
#define ZZZ_genl_ops CONCATENATE(GENL_MAGIC_FAMILY, _genl_ops)
include/linux/genl_magic_func.h
252
#define ZZZ_genl_family CONCATENATE(GENL_MAGIC_FAMILY, _genl_family)
include/linux/genl_magic_func.h
258
#define ZZZ_genl_mcgrps CONCATENATE(GENL_MAGIC_FAMILY, _genl_mcgrps)
include/linux/genl_magic_func.h
265
enum CONCATENATE(GENL_MAGIC_FAMILY, group_ids) {
include/linux/genl_magic_func.h
267
#define GENL_mc_group(group) CONCATENATE(GENL_MAGIC_FAMILY, _group_ ## group),
include/linux/genl_magic_func.h
27
static struct nla_policy CONCATENATE(GENL_MAGIC_FAMILY, _tla_nl_policy)[] = {
include/linux/genl_magic_func.h
273
static int CONCATENATE(GENL_MAGIC_FAMILY, _genl_multicast_ ## group)( \
include/linux/genl_magic_func.h
277
CONCATENATE(GENL_MAGIC_FAMILY, _group_ ## group); \
include/linux/genl_magic_func.h
293
.maxattr = ARRAY_SIZE(CONCATENATE(GENL_MAGIC_FAMILY, _tla_nl_policy))-1,
include/linux/genl_magic_func.h
294
.policy = CONCATENATE(GENL_MAGIC_FAMILY, _tla_nl_policy),
include/linux/genl_magic_struct.h
21
extern int CONCATENATE(GENL_MAGIC_FAMILY, _genl_register)(void);
include/linux/genl_magic_struct.h
22
extern void CONCATENATE(GENL_MAGIC_FAMILY, _genl_unregister)(void);
include/linux/ioport.h
174
CONCATENATE(__DEFINE_RES, COUNT_ARGS(__VA_ARGS__))(__VA_ARGS__)
include/linux/pci.h
1635
CONCATENATE(__pci_bus_for_each_res, COUNT_ARGS(__VA_ARGS__)) \
include/linux/pci.h
2295
CONCATENATE(__pci_dev_for_each_res, COUNT_ARGS(__VA_ARGS__)) \
include/linux/skbuff.h
3790
CONCATENATE(_skb_frag_dma_map, \
include/linux/string.h
114
CONCATENATE(__strscpy, COUNT_ARGS(__VA_ARGS__))(dst, src, __VA_ARGS__)
include/linux/string.h
149
CONCATENATE(__strscpy_pad, COUNT_ARGS(__VA_ARGS__))(dst, src, __VA_ARGS__)
include/linux/unroll.h
54
#define UNROLL(N, MACRO, args...) CONCATENATE(__UNROLL_, N)(MACRO, args)
include/net/libeth/cache.h
36
CONCATENATE(__libeth_cls, COUNT_ARGS(__VA_ARGS__))(__VA_ARGS__)
include/net/libeth/xdp.h
1837
CONCATENATE(__libeth_xdp_feat, \
include/net/libeth/xdp.h
86
CONCATENATE(__libeth_xdp_psz, COUNT_ARGS(__VA_ARGS__))(__VA_ARGS__)
include/rv/automata.h
16
#define RV_AUTOMATON_NAME CONCATENATE(automaton_, MONITOR_NAME)
include/rv/automata.h
17
#define EVENT_MAX CONCATENATE(event_max_, MONITOR_NAME)
include/rv/automata.h
18
#define STATE_MAX CONCATENATE(state_max_, MONITOR_NAME)
include/rv/automata.h
19
#define events CONCATENATE(events_, MONITOR_NAME)
include/rv/automata.h
20
#define states CONCATENATE(states_, MONITOR_NAME)
include/rv/da_monitor.h
120
CONCATENATE(trace_error_, MONITOR_NAME)(
include/rv/da_monitor.h
126
CONCATENATE(trace_event_, MONITOR_NAME)(
include/rv/da_monitor.h
161
CONCATENATE(trace_error_, MONITOR_NAME)(tsk->pid,
include/rv/da_monitor.h
167
CONCATENATE(trace_event_, MONITOR_NAME)(tsk->pid,
include/rv/da_monitor.h
27
#define DA_MON_NAME CONCATENATE(da_mon_, MONITOR_NAME)
include/rv/ltl_monitor.h
114
if (!CONCATENATE(CONCATENATE(trace_event_, MONITOR_NAME), _enabled)())
include/rv/ltl_monitor.h
127
CONCATENATE(trace_event_, MONITOR_NAME)(task, states, atoms.buffer, next);
include/rv/ltl_monitor.h
19
#define RV_MONITOR_NAME CONCATENATE(rv_, MONITOR_NAME)
include/rv/ltl_monitor.h
86
CONCATENATE(trace_error_, MONITOR_NAME)(task);
include/sound/soc.h
923
CONCATENATE(SND_SOC_DAILINK_REG, COUNT_ARGS(__VA_ARGS__))(__VA_ARGS__)
include/trace/bpf_probe.h
43
#define CAST_TO_U64(...) CONCATENATE(__CAST, COUNT_ARGS(__VA_ARGS__))(__VA_ARGS__)
include/trace/bpf_probe.h
49
CONCATENATE(bpf_trace_run, COUNT_ARGS(args))(__data, CAST_TO_U64(args)); \
include/trace/bpf_probe.h
62
CONCATENATE(bpf_trace_run, COUNT_ARGS(args))(__data, CAST_TO_U64(args)); \
tools/include/linux/args.h
28
#ifndef CONCATENATE
tools/testing/selftests/bpf/bpf_util.h
60
CONCATENATE(__strscpy, COUNT_ARGS(__VA_ARGS__))(dst, src, __VA_ARGS__)