Home
last modified time | relevance | path

Searched refs:arg1 (Results 1 – 12 of 12) sorted by relevance

/tools/include/nolibc/
Dnolibc.h313 #define my_syscall1(num, arg1) \ argument
317 register long _arg1 asm("rdi") = (long)(arg1); \
329 #define my_syscall2(num, arg1, arg2) \ argument
333 register long _arg1 asm("rdi") = (long)(arg1); \
346 #define my_syscall3(num, arg1, arg2, arg3) \ argument
350 register long _arg1 asm("rdi") = (long)(arg1); \
364 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
368 register long _arg1 asm("rdi") = (long)(arg1); \
383 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
387 register long _arg1 asm("rdi") = (long)(arg1); \
[all …]
/tools/perf/scripts/python/Perf-Trace-Util/
DContext.c12 #define _PyCapsule_GetPointer(arg1, arg2) \ argument
13 PyCObject_AsVoidPtr(arg1)
17 #define _PyCapsule_GetPointer(arg1, arg2) \ argument
18 PyCapsule_GetPointer((arg1), (arg2))
/tools/testing/selftests/kvm/include/
Dkvm_util.h322 #define GUEST_SYNC_ARGS(stage, arg1, arg2, arg3, arg4) \ argument
323 ucall(UCALL_SYNC, 6, "hello", stage, arg1, arg2, arg3, arg4)
336 #define GUEST_ASSERT_1(_condition, arg1) \ argument
337 __GUEST_ASSERT((_condition), 1, (arg1))
339 #define GUEST_ASSERT_2(_condition, arg1, arg2) \ argument
340 __GUEST_ASSERT((_condition), 2, (arg1), (arg2))
342 #define GUEST_ASSERT_3(_condition, arg1, arg2, arg3) \ argument
343 __GUEST_ASSERT((_condition), 3, (arg1), (arg2), (arg3))
345 #define GUEST_ASSERT_4(_condition, arg1, arg2, arg3, arg4) \ argument
346 __GUEST_ASSERT((_condition), 4, (arg1), (arg2), (arg3), (arg4))
/tools/testing/selftests/x86/
Dptrace_syscall.c44 uint32_t nr, arg0, arg1, arg2, arg3, arg4, arg5; member
61 "+b" (args->arg0), "+c" (args->arg1), "+d" (args->arg2), in do_full_int80()
143 .arg0 = 10, .arg1 = 11, .arg2 = 12, in test_sys32_regs()
150 args.arg0 != 10 || args.arg1 != 11 || args.arg2 != 12 || in test_sys32_regs()
162 args.arg1 = SIGUSR1; in test_sys32_regs()
165 args.arg0 != getpid() || args.arg1 != SIGUSR1 || args.arg2 != 12 || in test_sys32_regs()
Dldt_gdt.c760 [arg1] "r" ((unsigned int)(unsigned long)low_user_desc_clear) in test_gdt_invalidation()
791 [arg1] "r" ((unsigned int)(unsigned long)low_user_desc_clear) in test_gdt_invalidation()
824 [arg1] "r" ((unsigned int)(unsigned long)low_user_desc_clear) in test_gdt_invalidation()
877 [arg1] "r" ((unsigned int)(unsigned long)low_user_desc_clear) in test_gdt_invalidation()
/tools/power/x86/intel-speed-select/
Disst-config.c384 void *arg1, void *arg2, void *arg3, in for_each_online_package_in_set() argument
423 callback(i, arg1, arg2, arg3, arg4); in for_each_online_package_in_set()
430 void (*callback)(int, void *, void *, void *, void *), void *arg1, in for_each_online_target_cpu_in_set() argument
448 callback(i, arg1, arg2, arg3, arg4); in for_each_online_target_cpu_in_set()
999 static void exec_on_get_ctdp_cpu(int cpu, void *arg1, void *arg2, void *arg3, in exec_on_get_ctdp_cpu() argument
1005 fn_ptr = arg1; in exec_on_get_ctdp_cpu()
1174 static void dump_clx_n_config_for_cpu(int cpu, void *arg1, void *arg2, in dump_clx_n_config_for_cpu() argument
1200 static void dump_isst_config_for_cpu(int cpu, void *arg1, void *arg2, in dump_isst_config_for_cpu() argument
1250 static void set_tdp_level_for_cpu(int cpu, void *arg1, void *arg2, void *arg3, in set_tdp_level_for_cpu() argument
1325 static void clx_n_dump_pbf_config_for_cpu(int cpu, void *arg1, void *arg2, in clx_n_dump_pbf_config_for_cpu() argument
[all …]
/tools/testing/selftests/bpf/progs/
Dtest_core_extern.c11 static int (*bpf_missing_helper)(const void *arg1, int arg2) = (void *) 999;
/tools/perf/util/scripting-engines/
Dtrace-event-python.c58 #define _PyUnicode_FromStringAndSize(arg1, arg2) \ argument
59 PyString_FromStringAndSize((arg1), (arg2))
60 #define _PyBytes_FromStringAndSize(arg1, arg2) \ argument
61 PyString_FromStringAndSize((arg1), (arg2))
66 #define _PyCapsule_New(arg1, arg2, arg3) \ argument
67 PyCObject_FromVoidPtr((arg1), (arg2))
73 #define _PyUnicode_FromStringAndSize(arg1, arg2) \ argument
74 PyUnicode_FromStringAndSize((arg1), (arg2))
75 #define _PyBytes_FromStringAndSize(arg1, arg2) \ argument
76 PyBytes_FromStringAndSize((arg1), (arg2))
[all …]
/tools/hv/
Dvmbus_testing363 def check_range(arg1): argument
366 val = int(arg1)
/tools/bpf/bpftool/Documentation/
Dbpftool-btf.rst126 int my_func(union my_union *arg1, int arg2)
165 'arg1' type_id=1
/tools/testing/selftests/futex/
DREADME43 Arguments: arg1=val1 #units specified for clarity where appropriate
/tools/perf/util/
Dbpf-loader.c488 struct probe_trace_arg *arg1, *arg2; in compare_tev_args() local
491 arg1 = &tev1->args[i]; in compare_tev_args()
494 ret = strcmp(arg1->value, arg2->value); in compare_tev_args()
498 ref1 = arg1->ref; in compare_tev_args()