Symbol: DROP_FIRST_ARG
drivers/gpu/drm/xe/tests/xe_args_test.c
102
#define bar DROP_FIRST_ARG(foo(ARGS_SEP_COMMA __stringify))
drivers/gpu/drm/xe/tests/xe_args_test.c
103
#define buz CALL_ARGS(COUNT_ARGS, DROP_FIRST_ARG(foo(ARGS_SEP_COMMA)))
drivers/gpu/drm/xe/tests/xe_args_test.c
165
int a[] = { DROP_FIRST_ARG(FOO_ARGS) };
drivers/gpu/drm/xe/tests/xe_args_test.c
167
KUNIT_EXPECT_EQ(test, DROP_FIRST_ARG(0, -1), -1);
drivers/gpu/drm/xe/tests/xe_args_test.c
168
KUNIT_EXPECT_EQ(test, DROP_FIRST_ARG(DROP_FIRST_ARG(0, -1, -2)), -2);
drivers/gpu/drm/xe/tests/xe_args_test.c
170
KUNIT_EXPECT_EQ(test, CALL_ARGS(COUNT_ARGS, DROP_FIRST_ARG(FOO_ARGS)), 3);
drivers/gpu/drm/xe/tests/xe_args_test.c
171
KUNIT_EXPECT_EQ(test, DROP_FIRST_ARG(DROP_FIRST_ARG(DROP_FIRST_ARG(FOO_ARGS))), -4);
drivers/gpu/drm/xe/tests/xe_args_test.c
176
#define foo DROP_FIRST_ARG(FOO_ARGS)
drivers/gpu/drm/xe/tests/xe_args_test.c
177
#define bar DROP_FIRST_ARG(DROP_FIRST_ARG(FOO_ARGS))
drivers/gpu/drm/xe/tests/xe_args_test.c
178
#define buz DROP_FIRST_ARG(DROP_FIRST_ARG(DROP_FIRST_ARG(FOO_ARGS)))
drivers/gpu/drm/xe/tests/xe_args_test.c
27
#define bar CALL_ARGS(COUNT_ARGS, DROP_FIRST_ARG(foo))
drivers/gpu/drm/xe/tests/xe_args_test.c
87
#define buz IF_ARGS(Z, Q, DROP_FIRST_ARG(FIRST_ARG(foo)))
drivers/gpu/drm/xe/xe_args.h
112
#define PICK_ARG2(args...) PICK_ARG1(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
113
#define PICK_ARG3(args...) PICK_ARG2(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
114
#define PICK_ARG4(args...) PICK_ARG3(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
115
#define PICK_ARG5(args...) PICK_ARG4(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
116
#define PICK_ARG6(args...) PICK_ARG5(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
117
#define PICK_ARG7(args...) PICK_ARG6(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
118
#define PICK_ARG8(args...) PICK_ARG7(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
119
#define PICK_ARG9(args...) PICK_ARG8(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
120
#define PICK_ARG10(args...) PICK_ARG9(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
121
#define PICK_ARG11(args...) PICK_ARG10(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_args.h
122
#define PICK_ARG12(args...) PICK_ARG11(DROP_FIRST_ARG(args))
drivers/gpu/drm/xe/xe_rtp_helpers.h
20
#define _XE_TUPLE_TAIL(...) (DROP_FIRST_ARG(__VA_ARGS__))
drivers/gpu/drm/xe/xe_rtp_helpers.h
81
#define XE_RTP_DROP_CAST(...) _XE_ESC(DROP_FIRST_ARG _XE_ESC __VA_ARGS__)