/linux-6.6.21/security/keys/ |
D | compat.c | 18 u32, arg2, u32, arg3, u32, arg4, u32, arg5) in COMPAT_SYSCALL_DEFINE5() argument 22 return keyctl_get_keyring_ID(arg2, arg3); in COMPAT_SYSCALL_DEFINE5() 25 return keyctl_join_session_keyring(compat_ptr(arg2)); in COMPAT_SYSCALL_DEFINE5() 28 return keyctl_update_key(arg2, compat_ptr(arg3), arg4); in COMPAT_SYSCALL_DEFINE5() 31 return keyctl_revoke_key(arg2); in COMPAT_SYSCALL_DEFINE5() 34 return keyctl_describe_key(arg2, compat_ptr(arg3), arg4); in COMPAT_SYSCALL_DEFINE5() 37 return keyctl_keyring_clear(arg2); in COMPAT_SYSCALL_DEFINE5() 40 return keyctl_keyring_link(arg2, arg3); in COMPAT_SYSCALL_DEFINE5() 43 return keyctl_keyring_unlink(arg2, arg3); in COMPAT_SYSCALL_DEFINE5() 46 return keyctl_keyring_search(arg2, compat_ptr(arg3), in COMPAT_SYSCALL_DEFINE5() [all …]
|
/linux-6.6.21/drivers/gpu/drm/amd/display/dc/inc/ |
D | bw_fixed.h | 43 const struct bw_fixed arg2) in bw_min2() argument 45 return (arg1.value <= arg2.value) ? arg1 : arg2; in bw_min2() 49 const struct bw_fixed arg2) in bw_max2() argument 51 return (arg2.value <= arg1.value) ? arg1 : arg2; in bw_max2() 102 const struct bw_fixed arg2) in bw_add() argument 106 res.value = arg1.value + arg2.value; in bw_add() 111 static inline struct bw_fixed bw_sub(const struct bw_fixed arg1, const struct bw_fixed arg2) in bw_sub() argument 115 res.value = arg1.value - arg2.value; in bw_sub() 120 struct bw_fixed bw_mul(const struct bw_fixed arg1, const struct bw_fixed arg2); 121 static inline struct bw_fixed bw_div(const struct bw_fixed arg1, const struct bw_fixed arg2) in bw_div() argument [all …]
|
D | dcn_calc_math.h | 29 float dcn_bw_mod(const float arg1, const float arg2); 30 float dcn_bw_min2(const float arg1, const float arg2); 31 unsigned int dcn_bw_max(const unsigned int arg1, const unsigned int arg2); 32 float dcn_bw_max2(const float arg1, const float arg2);
|
/linux-6.6.21/drivers/gpu/drm/amd/display/include/ |
D | fixed31_32.h | 135 static inline bool dc_fixpt_lt(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_lt() argument 137 return arg1.value < arg2.value; in dc_fixpt_lt() 144 static inline bool dc_fixpt_le(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_le() argument 146 return arg1.value <= arg2.value; in dc_fixpt_le() 153 static inline bool dc_fixpt_eq(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_eq() argument 155 return arg1.value == arg2.value; in dc_fixpt_eq() 162 static inline struct fixed31_32 dc_fixpt_min(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_min() argument 164 if (arg1.value <= arg2.value) in dc_fixpt_min() 167 return arg2; in dc_fixpt_min() 174 static inline struct fixed31_32 dc_fixpt_max(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_max() argument [all …]
|
/linux-6.6.21/drivers/gpu/drm/amd/display/dc/dml/calcs/ |
D | dcn_calc_math.c | 40 float dcn_bw_mod(const float arg1, const float arg2) in dcn_bw_mod() argument 43 return arg2; in dcn_bw_mod() 44 if (isNaN(arg2)) in dcn_bw_mod() 46 return arg1 - arg1 * ((int) (arg1 / arg2)); in dcn_bw_mod() 49 float dcn_bw_min2(const float arg1, const float arg2) in dcn_bw_min2() argument 52 return arg2; in dcn_bw_min2() 53 if (isNaN(arg2)) in dcn_bw_min2() 55 return arg1 < arg2 ? arg1 : arg2; in dcn_bw_min2() 58 unsigned int dcn_bw_max(const unsigned int arg1, const unsigned int arg2) in dcn_bw_max() argument 60 return arg1 > arg2 ? arg1 : arg2; in dcn_bw_max() [all …]
|
/linux-6.6.21/arch/m68k/include/asm/ |
D | linkage.h | 24 #define __asmlinkage_protect2(ret, arg1, arg2) \ argument 25 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2)) 26 #define __asmlinkage_protect3(ret, arg1, arg2, arg3) \ argument 27 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3)) 28 #define __asmlinkage_protect4(ret, arg1, arg2, arg3, arg4) \ argument 29 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \ 31 #define __asmlinkage_protect5(ret, arg1, arg2, arg3, arg4, arg5) \ argument 32 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \ 34 #define __asmlinkage_protect6(ret, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 35 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \
|
/linux-6.6.21/tools/testing/selftests/bpf/ |
D | sdt.h | 340 #define _SDT_ASM_OPERANDS_2(arg1, arg2) \ 341 _SDT_ASM_OPERANDS_1(arg1), _SDT_ARG(2, arg2) 342 #define _SDT_ASM_OPERANDS_3(arg1, arg2, arg3) \ 343 _SDT_ASM_OPERANDS_2(arg1, arg2), _SDT_ARG(3, arg3) 344 #define _SDT_ASM_OPERANDS_4(arg1, arg2, arg3, arg4) \ 345 _SDT_ASM_OPERANDS_3(arg1, arg2, arg3), _SDT_ARG(4, arg4) 346 #define _SDT_ASM_OPERANDS_5(arg1, arg2, arg3, arg4, arg5) \ 347 _SDT_ASM_OPERANDS_4(arg1, arg2, arg3, arg4), _SDT_ARG(5, arg5) 348 #define _SDT_ASM_OPERANDS_6(arg1, arg2, arg3, arg4, arg5, arg6) \ 349 _SDT_ASM_OPERANDS_5(arg1, arg2, arg3, arg4, arg5), _SDT_ARG(6, arg6) [all …]
|
/linux-6.6.21/tools/include/nolibc/ |
D | arch-i386.h | 61 #define my_syscall2(num, arg1, arg2) \ argument 66 register long _arg2 __asm__ ("ecx") = (long)(arg2); \ 78 #define my_syscall3(num, arg1, arg2, arg3) \ argument 83 register long _arg2 __asm__ ("ecx") = (long)(arg2); \ 96 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 101 register long _arg2 __asm__ ("ecx") = (long)(arg2); \ 115 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 120 register long _arg2 __asm__ ("ecx") = (long)(arg2); \ 135 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 148 "c"(arg2), /* %ecx */ \
|
D | arch-aarch64.h | 57 #define my_syscall2(num, arg1, arg2) \ argument 61 register long _arg2 __asm__ ("x1") = (long)(arg2); \ 73 #define my_syscall3(num, arg1, arg2, arg3) \ argument 77 register long _arg2 __asm__ ("x1") = (long)(arg2); \ 90 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 94 register long _arg2 __asm__ ("x1") = (long)(arg2); \ 108 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 112 register long _arg2 __asm__ ("x1") = (long)(arg2); \ 127 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 131 register long _arg2 __asm__ ("x1") = (long)(arg2); \
|
D | arch-riscv.h | 55 #define my_syscall2(num, arg1, arg2) \ argument 59 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 71 #define my_syscall3(num, arg1, arg2, arg3) \ argument 75 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 88 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 92 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 106 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 110 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 125 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 129 register long _arg2 __asm__ ("a1") = (long)(arg2); \
|
D | arch-loongarch.h | 57 #define my_syscall2(num, arg1, arg2) \ argument 61 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 73 #define my_syscall3(num, arg1, arg2, arg3) \ argument 77 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 90 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 94 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 108 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 112 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 127 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 131 register long _arg2 __asm__ ("a1") = (long)(arg2); \
|
D | arch-x86_64.h | 62 #define my_syscall2(num, arg1, arg2) \ argument 67 register long _arg2 __asm__ ("rsi") = (long)(arg2); \ 79 #define my_syscall3(num, arg1, arg2, arg3) \ argument 84 register long _arg2 __asm__ ("rsi") = (long)(arg2); \ 97 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 102 register long _arg2 __asm__ ("rsi") = (long)(arg2); \ 116 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 121 register long _arg2 __asm__ ("rsi") = (long)(arg2); \ 136 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 141 register long _arg2 __asm__ ("rsi") = (long)(arg2); \
|
D | arch-mips.h | 71 #define my_syscall2(num, arg1, arg2) \ argument 75 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 90 #define my_syscall3(num, arg1, arg2, arg3) \ argument 94 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 110 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 114 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 130 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 134 register long _arg2 __asm__ ("a1") = (long)(arg2); \ 152 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 156 register long _arg2 __asm__ ("a1") = (long)(arg2); \
|
D | arch-powerpc.h | 64 #define my_syscall2(num, arg1, arg2) \ argument 69 register long _arg2 __asm__ ("r4") = (long)(arg2); \ 84 #define my_syscall3(num, arg1, arg2, arg3) \ argument 89 register long _arg2 __asm__ ("r4") = (long)(arg2); \ 105 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 110 register long _arg2 __asm__ ("r4") = (long)(arg2); \ 128 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 133 register long _arg2 __asm__ ("r4") = (long)(arg2); \ 151 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 156 register long _arg2 __asm__ ("r4") = (long)(arg2); \
|
D | arch-s390.h | 54 #define my_syscall2(num, arg1, arg2) \ argument 58 register long _arg2 __asm__ ("3") = (long)(arg2); \ 69 #define my_syscall3(num, arg1, arg2, arg3) \ argument 73 register long _arg2 __asm__ ("3") = (long)(arg2); \ 85 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 89 register long _arg2 __asm__ ("3") = (long)(arg2); \ 102 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 106 register long _arg2 __asm__ ("3") = (long)(arg2); \ 121 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 125 register long _arg2 __asm__ ("3") = (long)(arg2); \
|
D | arch-arm.h | 87 #define my_syscall2(num, arg1, arg2) \ argument 91 register long _arg2 __asm__ ("r1") = (long)(arg2); \ 105 #define my_syscall3(num, arg1, arg2, arg3) \ argument 109 register long _arg2 __asm__ ("r1") = (long)(arg2); \ 124 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument 128 register long _arg2 __asm__ ("r1") = (long)(arg2); \ 144 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument 148 register long _arg2 __asm__ ("r1") = (long)(arg2); \ 165 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 169 register long _arg2 __asm__ ("r1") = (long)(arg2); \
|
/linux-6.6.21/arch/x86/um/shared/sysdep/ |
D | stub_32.h | 33 static inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument 38 "c" (arg2)); in stub_syscall2() 43 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) in stub_syscall3() argument 48 "c" (arg2), "d" (arg3)); in stub_syscall3() 53 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument 59 "c" (arg2), "d" (arg3), "S" (arg4)); in stub_syscall4() 64 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3, in stub_syscall5() argument 70 "c" (arg2), "d" (arg3), "S" (arg4), "D" (arg5)); in stub_syscall5()
|
D | stub_64.h | 30 static inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument 36 : "0" (syscall), "D" (arg1), "S" (arg2) : __syscall_clobber ); in stub_syscall2() 41 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) in stub_syscall3() argument 47 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3) in stub_syscall3() 53 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument 60 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3), in stub_syscall4() 67 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3, in stub_syscall5() argument 74 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3), in stub_syscall5()
|
/linux-6.6.21/arch/parisc/include/asm/ |
D | unistd.h | 119 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 120 type name(type1 arg1, type2 arg2) \ 122 return K_INLINE_SYSCALL(name, 2, arg1, arg2); \ 125 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 126 type name(type1 arg1, type2 arg2, type3 arg3) \ 128 return K_INLINE_SYSCALL(name, 3, arg1, arg2, arg3); \ 131 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument 132 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) \ 134 return K_INLINE_SYSCALL(name, 4, arg1, arg2, arg3, arg4); \ 138 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ argument [all …]
|
/linux-6.6.21/include/linux/ |
D | kcov.h | 82 void __sanitizer_cov_trace_cmp1(u8 arg1, u8 arg2); 83 void __sanitizer_cov_trace_cmp2(u16 arg1, u16 arg2); 84 void __sanitizer_cov_trace_cmp4(u32 arg1, u32 arg2); 85 void __sanitizer_cov_trace_cmp8(kcov_u64 arg1, kcov_u64 arg2); 86 void __sanitizer_cov_trace_const_cmp1(u8 arg1, u8 arg2); 87 void __sanitizer_cov_trace_const_cmp2(u16 arg1, u16 arg2); 88 void __sanitizer_cov_trace_const_cmp4(u32 arg1, u32 arg2); 89 void __sanitizer_cov_trace_const_cmp8(kcov_u64 arg1, kcov_u64 arg2);
|
/linux-6.6.21/arch/sparc/include/asm/ |
D | smp_32.h | 58 unsigned long arg2, unsigned long arg3, 75 static inline void xc2(void *func, unsigned long arg1, unsigned long arg2) in xc2() argument 77 sparc32_ipi_ops->cross_call(func, *cpu_online_mask, arg1, arg2, 0, 0); in xc2() 80 static inline void xc3(void *func, unsigned long arg1, unsigned long arg2, in xc3() argument 84 arg1, arg2, arg3, 0); in xc3() 87 static inline void xc4(void *func, unsigned long arg1, unsigned long arg2, in xc4() argument 91 arg1, arg2, arg3, arg4); in xc4()
|
/linux-6.6.21/arch/x86/kernel/ |
D | process_64.c | 795 long do_arch_prctl_64(struct task_struct *task, int option, unsigned long arg2) in do_arch_prctl_64() argument 801 if (unlikely(arg2 >= TASK_SIZE_MAX)) in do_arch_prctl_64() 813 x86_gsbase_write_cpu_inactive(arg2); in do_arch_prctl_64() 819 task->thread.gsbase = arg2; in do_arch_prctl_64() 823 x86_gsbase_write_task(task, arg2); in do_arch_prctl_64() 833 if (unlikely(arg2 >= TASK_SIZE_MAX)) in do_arch_prctl_64() 843 x86_fsbase_write_cpu(arg2); in do_arch_prctl_64() 849 task->thread.fsbase = arg2; in do_arch_prctl_64() 852 x86_fsbase_write_task(task, arg2); in do_arch_prctl_64() 860 ret = put_user(base, (unsigned long __user *)arg2); in do_arch_prctl_64() [all …]
|
/linux-6.6.21/tools/perf/scripts/python/Perf-Trace-Util/ |
D | Context.c | 27 #define _PyCapsule_GetPointer(arg1, arg2) \ argument 29 #define _PyBytes_FromStringAndSize(arg1, arg2) \ argument 30 PyString_FromStringAndSize((arg1), (arg2)) 36 #define _PyCapsule_GetPointer(arg1, arg2) \ argument 37 PyCapsule_GetPointer((arg1), (arg2)) 38 #define _PyBytes_FromStringAndSize(arg1, arg2) \ argument 39 PyBytes_FromStringAndSize((arg1), (arg2)) 46 static struct scripting_context *get_args(PyObject *args, const char *name, PyObject **arg2) in get_args() argument 48 int cnt = 1 + !!arg2; in get_args() 51 if (!PyArg_UnpackTuple(args, name, 1, cnt, &context, arg2)) in get_args()
|
/linux-6.6.21/arch/x86/um/ |
D | syscalls_64.c | 17 unsigned long __user *arg2) in arch_prctl() argument 19 unsigned long *ptr = arg2, tmp; in arch_prctl() 69 ret = put_user(tmp, arg2); in arch_prctl() 72 ret = put_user(tmp, arg2); in arch_prctl() 79 SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2) in SYSCALL_DEFINE2() argument 81 return arch_prctl(current, option, (unsigned long __user *) arg2); in SYSCALL_DEFINE2()
|
/linux-6.6.21/kernel/ |
D | sys.c | 2414 static inline int prctl_get_mdwe(unsigned long arg2, unsigned long arg3, in prctl_get_mdwe() argument 2417 if (arg2 || arg3 || arg4 || arg5) in prctl_get_mdwe() 2432 SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3, in SYSCALL_DEFINE5() argument 2439 error = security_task_prctl(option, arg2, arg3, arg4, arg5); in SYSCALL_DEFINE5() 2446 if (!valid_signal(arg2)) { in SYSCALL_DEFINE5() 2450 me->pdeath_signal = arg2; in SYSCALL_DEFINE5() 2453 error = put_user(me->pdeath_signal, (int __user *)arg2); in SYSCALL_DEFINE5() 2459 if (arg2 != SUID_DUMP_DISABLE && arg2 != SUID_DUMP_USER) { in SYSCALL_DEFINE5() 2463 set_dumpable(me->mm, arg2); in SYSCALL_DEFINE5() 2467 error = SET_UNALIGN_CTL(me, arg2); in SYSCALL_DEFINE5() [all …]
|