Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 212) sorted by relevance

123456789

/tools/testing/selftests/bpf/
Dbpf_endian.h24 # define __bpf_ntohs(x) __builtin_bswap16(x) argument
25 # define __bpf_htons(x) __builtin_bswap16(x) argument
26 # define __bpf_constant_ntohs(x) ___constant_swab16(x) argument
27 # define __bpf_constant_htons(x) ___constant_swab16(x) argument
28 # define __bpf_ntohl(x) __builtin_bswap32(x) argument
29 # define __bpf_htonl(x) __builtin_bswap32(x) argument
30 # define __bpf_constant_ntohl(x) ___constant_swab32(x) argument
31 # define __bpf_constant_htonl(x) ___constant_swab32(x) argument
32 # define __bpf_be64_to_cpu(x) __builtin_bswap64(x) argument
33 # define __bpf_cpu_to_be64(x) __builtin_bswap64(x) argument
[all …]
Dbpf_helpers.h373 #define PT_REGS_PARM1(x) ((x)->di) argument
374 #define PT_REGS_PARM2(x) ((x)->si) argument
375 #define PT_REGS_PARM3(x) ((x)->dx) argument
376 #define PT_REGS_PARM4(x) ((x)->cx) argument
377 #define PT_REGS_PARM5(x) ((x)->r8) argument
378 #define PT_REGS_RET(x) ((x)->sp) argument
379 #define PT_REGS_FP(x) ((x)->bp) argument
380 #define PT_REGS_RC(x) ((x)->ax) argument
381 #define PT_REGS_SP(x) ((x)->sp) argument
382 #define PT_REGS_IP(x) ((x)->ip) argument
[all …]
/tools/include/tools/
Dendian.h10 #define htole16(x) (x) argument
13 #define htole32(x) (x) argument
16 #define htole64(x) (x) argument
20 #define le16toh(x) (x) argument
24 #define le32toh(x) (x) argument
28 #define le64toh(x) (x) argument
34 #define htole16(x) __bswap_16(x) argument
37 #define htole32(x) __bswap_32(x) argument
40 #define htole64(x) __bswap_64(x) argument
44 #define le16toh(x) __bswap_16(x) argument
[all …]
/tools/include/linux/
Dspinlock.h9 #define DEFINE_SPINLOCK(x) pthread_mutex_t x = PTHREAD_MUTEX_INITIALIZER argument
10 #define __SPIN_LOCK_UNLOCKED(x) (pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER argument
11 #define spin_lock_init(x) pthread_mutex_init(x, NULL) argument
13 #define spin_lock(x) pthread_mutex_lock(x) argument
14 #define spin_unlock(x) pthread_mutex_unlock(x) argument
15 #define spin_lock_bh(x) pthread_mutex_lock(x) argument
16 #define spin_unlock_bh(x) pthread_mutex_unlock(x) argument
17 #define spin_lock_irq(x) pthread_mutex_lock(x) argument
18 #define spin_unlock_irq(x) pthread_mutex_unlock(x) argument
19 #define spin_lock_irqsave(x, f) (void)f, pthread_mutex_lock(x) argument
[all …]
Dkernel.h18 #define PERF_ALIGN(x, a) __PERF_ALIGN_MASK(x, (typeof(x))(a)-1) argument
19 #define __PERF_ALIGN_MASK(x, mask) (((x)+(mask))&~(mask)) argument
42 #define max(x, y) ({ \ argument
50 #define min(x, y) ({ \ argument
58 #define roundup(x, y) ( \ argument
115 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) argument
116 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) argument
117 #define round_down(x, y) ((x) & ~__round_mask(x, y)) argument
Dcompiler.h70 # define likely(x) __builtin_expect(!!(x), 1) argument
74 # define unlikely(x) __builtin_expect(!!(x), 0) argument
85 #define uninitialized_var(x) x = *(&(x)) argument
154 #define READ_ONCE(x) \ argument
162 #define WRITE_ONCE(x, val) \ argument
/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
Dint_typedefs.h25 #define S8_C(x) INT8_C(x) argument
26 #define U8_C(x) UINT8_C(x) argument
27 #define S16_C(x) INT16_C(x) argument
28 #define U16_C(x) UINT16_C(x) argument
29 #define S32_C(x) INT32_C(x) argument
30 #define U32_C(x) UINT32_C(x) argument
31 #define S64_C(x) INT64_C(x) argument
32 #define U64_C(x) UINT64_C(x) argument
Dlocks.h15 #define __acquire(x) argument
16 #define __acquires(x) argument
17 #define __release(x) argument
18 #define __releases(x) argument
128 #define __SPIN_LOCK_UNLOCKED(x) SPIN_LOCK_UNLOCKED argument
129 #define DEFINE_SPINLOCK(x) spinlock_t x = SPIN_LOCK_UNLOCKED argument
181 #define COMPLETION_INITIALIZER(x) {.count = 0} argument
182 #define DECLARE_COMPLETION(x) struct completion x = COMPLETION_INITIALIZER(x) argument
183 #define DECLARE_COMPLETION_ONSTACK(x) DECLARE_COMPLETION(x) argument
/tools/testing/selftests/powerpc/vphn/
Dtest-vphn.c8 #define cpu_to_be32(x) bswap_32(x) argument
9 #define be32_to_cpu(x) bswap_32(x) argument
10 #define be16_to_cpup(x) bswap_16(*x) argument
11 #define cpu_to_be64(x) bswap_64(x) argument
13 #define cpu_to_be32(x) (x) argument
14 #define be32_to_cpu(x) (x) argument
15 #define be16_to_cpup(x) (*x) argument
16 #define cpu_to_be64(x) (x) argument
/tools/perf/scripts/python/
Dexport-to-sqlite.py328 def emit_to_hex(x): argument
670 def sched__sched_switch(*x):
673 def bind_exec(q, n, x): argument
678 def evsel_table(*x):
681 def machine_table(*x):
684 def thread_table(*x):
687 def comm_table(*x):
690 def comm_thread_table(*x):
693 def dso_table(*x):
696 def symbol_table(*x):
[all …]
Dexport-to-postgresql.py970 def sched__sched_switch(*x):
973 def evsel_table(evsel_id, evsel_name, *x):
980 def machine_table(machine_id, pid, root_dir, *x):
987 def thread_table(thread_id, machine_id, process_id, pid, tid, *x):
991 def comm_table(comm_id, comm_str, thread_id, time, exec_flag, *x):
998 def comm_thread_table(comm_thread_id, comm_id, thread_id, *x):
1003 def dso_table(dso_id, machine_id, short_name, long_name, build_id, *x):
1014 def symbol_table(symbol_id, dso_id, sym_start, sym_end, binding, symbol_name, *x):
1021 def branch_type_table(branch_type, name, *x):
1028 …p, period, weight, transaction, data_src, branch_type, in_tx, call_path_id, insn_cnt, cyc_cnt, *x):
[all …]
/tools/testing/selftests/rseq/
Drseq.h49 #define rseq_likely(x) __builtin_expect(!!(x), 1) argument
50 #define rseq_unlikely(x) __builtin_expect(!!(x), 0) argument
53 #define RSEQ_ACCESS_ONCE(x) (*(__volatile__ __typeof__(x) *)&(x)) argument
54 #define RSEQ_WRITE_ONCE(x, v) __extension__ ({ RSEQ_ACCESS_ONCE(x) = (v); }) argument
55 #define RSEQ_READ_ONCE(x) RSEQ_ACCESS_ONCE(x) argument
57 #define __rseq_str_1(x) #x argument
58 #define __rseq_str(x) __rseq_str_1(x) argument
/tools/testing/radix-tree/
Dxarray.c10 #define module_init(x) argument
11 #define module_exit(x) argument
12 #define MODULE_AUTHOR(x) argument
13 #define MODULE_LICENSE(x) argument
/tools/testing/scatterlist/linux/
Dmm.h15 #define BUG_ON(x) assert(!(x)) argument
33 #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1) argument
34 #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
35 #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) argument
41 #define virt_to_page(x) ((void *)x) argument
42 #define page_address(x) ((void *)x) argument
55 #define __min(t1, t2, min1, min2, x, y) ({ \ argument
66 #define min(x, y) \ argument
71 #define min_t(type, x, y) \ argument
117 #define kfree(x) free(x) argument
/tools/perf/util/
Dutil.h34 #define KVER_VERSION(x) (((x) >> 16) & 0xff) argument
35 #define KVER_PATCHLEVEL(x) (((x) >> 8) & 0xff) argument
36 #define KVER_SUBLEVEL(x) ((x) & 0xff) argument
38 #define KVER_PARAM(x) KVER_VERSION(x), KVER_PATCHLEVEL(x), KVER_SUBLEVEL(x) argument
/tools/testing/selftests/powerpc/copyloops/asm/
Dppc_asm.h32 #define EX_TABLE(x, y) \ argument
39 #define ALT_FTR_SECTION_END_IFCLR(x) .endif argument
40 #define ALT_FTR_SECTION_END_IFSET(x) .endif argument
41 #define ALT_FTR_SECTION_END(x, y) .endif argument
42 #define END_FTR_SECTION_IFCLR(x) .endif argument
43 #define END_FTR_SECTION_IFSET(x) .endif argument
Dexport.h2 #define EXPORT_SYMBOL(x) argument
3 #define EXPORT_SYMBOL_GPL(x) argument
4 #define EXPORT_SYMBOL_KASAN(x) argument
/tools/include/uapi/linux/
Dconst.h25 #define _UL(x) (_AC(x, UL)) argument
26 #define _ULL(x) (_AC(x, ULL)) argument
28 #define _BITUL(x) (_UL(1) << (x)) argument
29 #define _BITULL(x) (_ULL(1) << (x)) argument
/tools/testing/selftests/bpf/progs/
Dbtf__core_reloc_nesting___dup_compat_types.c3 void f1(struct core_reloc_nesting___dup_compat_types x) {} in f1()
4 void f2(struct core_reloc_nesting___dup_compat_types__2 x) {} in f2()
5 void f3(struct core_reloc_nesting___dup_compat_types__3 x) {} in f3()
Dbtf__core_reloc_misc.c3 void f1(struct core_reloc_misc___a x) {} in f1()
4 void f2(struct core_reloc_misc___b x) {} in f2()
5 void f3(struct core_reloc_misc_extensible x) {} in f3()
Dbtf__core_reloc_nesting___err_dup_incompat_types.c3 void f1(struct core_reloc_nesting___err_dup_incompat_types__1 x) {} in f1()
4 void f2(struct core_reloc_nesting___err_dup_incompat_types__2 x) {} in f2()
Dbtf__core_reloc_nesting___err_partial_match_dups.c3 void f1(struct core_reloc_nesting___err_partial_match_dups__a x) {} in f1()
4 void f2(struct core_reloc_nesting___err_partial_match_dups__b x) {} in f2()
/tools/testing/radix-tree/linux/
Dkernel.h21 #define __acquires(x) argument
22 #define __releases(x) argument
23 #define __must_hold(x) argument
/tools/testing/selftests/net/
Dipv6_flowlabel_mgr.c31 #define explain(x) \ argument
34 #define __expect(x) \ argument
42 #define expect_pass(x) __expect(x) argument
43 #define expect_fail(x) __expect(!(x)) argument
/tools/thermal/tmon/
Dtui.c24 #define min(x, y) ({ \ argument
30 #define max(x, y) ({ \ argument
98 void write_status_bar(int x, char *line) in write_status_bar()
201 int i, j, x, y = 0; in show_cooling_device() local
278 int j, x = 0, y = 0; in show_dialogue() local
315 void write_dialogue_win(char *buf, int y, int x) in write_dialogue_win()
379 int x = 0; in show_title_bar() local
552 int x; in draw_tp_line() local

123456789