Lines Matching refs:a

264 #define ___concat(a, b) a ## b  argument
281 #define ___last2(a, x) x argument
282 #define ___last3(a, b, x) x argument
283 #define ___last4(a, b, c, x) x argument
284 #define ___last5(a, b, c, d, x) x argument
285 #define ___last6(a, b, c, d, e, x) x argument
286 #define ___last7(a, b, c, d, e, f, x) x argument
287 #define ___last8(a, b, c, d, e, f, g, x) x argument
288 #define ___last9(a, b, c, d, e, f, g, h, x) x argument
289 #define ___last10(a, b, c, d, e, f, g, h, i, x) x argument
292 #define ___nolast2(a, _) a argument
293 #define ___nolast3(a, b, _) a, b argument
294 #define ___nolast4(a, b, c, _) a, b, c argument
295 #define ___nolast5(a, b, c, d, _) a, b, c, d argument
296 #define ___nolast6(a, b, c, d, e, _) a, b, c, d, e argument
297 #define ___nolast7(a, b, c, d, e, f, _) a, b, c, d, e, f argument
298 #define ___nolast8(a, b, c, d, e, f, g, _) a, b, c, d, e, f, g argument
299 #define ___nolast9(a, b, c, d, e, f, g, h, _) a, b, c, d, e, f, g, h argument
300 #define ___nolast10(a, b, c, d, e, f, g, h, i, _) a, b, c, d, e, f, g, h, i argument
303 #define ___arrow1(a) a argument
304 #define ___arrow2(a, b) a->b argument
305 #define ___arrow3(a, b, c) a->b->c argument
306 #define ___arrow4(a, b, c, d) a->b->c->d argument
307 #define ___arrow5(a, b, c, d, e) a->b->c->d->e argument
308 #define ___arrow6(a, b, c, d, e, f) a->b->c->d->e->f argument
309 #define ___arrow7(a, b, c, d, e, f, g) a->b->c->d->e->f->g argument
310 #define ___arrow8(a, b, c, d, e, f, g, h) a->b->c->d->e->f->g->h argument
311 #define ___arrow9(a, b, c, d, e, f, g, h, i) a->b->c->d->e->f->g->h->i argument
312 #define ___arrow10(a, b, c, d, e, f, g, h, i, j) a->b->c->d->e->f->g->h->i->j argument
321 #define ___rd_first(fn, src, a) ___read(fn, &__t, ___type(src), src, a); argument
336 #define ___core_read0(fn, fn_ptr, dst, src, a) \ argument
337 ___read(fn, dst, ___type(src), src, a);
342 #define ___core_read(fn, fn_ptr, dst, src, a, ...) \ argument
344 src, a, ##__VA_ARGS__)
351 #define BPF_CORE_READ_INTO(dst, src, a, ...) ({ \ argument
353 dst, (src), a, ##__VA_ARGS__) \
361 #define BPF_CORE_READ_USER_INTO(dst, src, a, ...) ({ \ argument
363 dst, (src), a, ##__VA_ARGS__) \
367 #define BPF_PROBE_READ_INTO(dst, src, a, ...) ({ \ argument
369 dst, (src), a, ##__VA_ARGS__) \
377 #define BPF_PROBE_READ_USER_INTO(dst, src, a, ...) ({ \ argument
379 dst, (src), a, ##__VA_ARGS__) \
387 #define BPF_CORE_READ_STR_INTO(dst, src, a, ...) ({ \ argument
389 dst, (src), a, ##__VA_ARGS__) \
397 #define BPF_CORE_READ_USER_STR_INTO(dst, src, a, ...) ({ \ argument
399 dst, (src), a, ##__VA_ARGS__) \
403 #define BPF_PROBE_READ_STR_INTO(dst, src, a, ...) ({ \ argument
405 dst, (src), a, ##__VA_ARGS__) \
414 #define BPF_PROBE_READ_USER_STR_INTO(dst, src, a, ...) ({ \ argument
416 dst, (src), a, ##__VA_ARGS__) \
443 #define BPF_CORE_READ(src, a, ...) ({ \ argument
444 ___type((src), a, ##__VA_ARGS__) __r; \
445 BPF_CORE_READ_INTO(&__r, (src), a, ##__VA_ARGS__); \
459 #define BPF_CORE_READ_USER(src, a, ...) ({ \ argument
460 ___type((src), a, ##__VA_ARGS__) __r; \
461 BPF_CORE_READ_USER_INTO(&__r, (src), a, ##__VA_ARGS__); \
466 #define BPF_PROBE_READ(src, a, ...) ({ \ argument
467 ___type((src), a, ##__VA_ARGS__) __r; \
468 BPF_PROBE_READ_INTO(&__r, (src), a, ##__VA_ARGS__); \
478 #define BPF_PROBE_READ_USER(src, a, ...) ({ \ argument
479 ___type((src), a, ##__VA_ARGS__) __r; \
480 BPF_PROBE_READ_USER_INTO(&__r, (src), a, ##__VA_ARGS__); \