/linux/security/keys/ |
A D | compat.c | 22 return keyctl_get_keyring_ID(arg2, arg3); in COMPAT_SYSCALL_DEFINE5() 31 return keyctl_revoke_key(arg2); 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() 56 return keyctl_setperm_key(arg2, arg3); in COMPAT_SYSCALL_DEFINE5() 66 return keyctl_set_reqkey_keyring(arg2); in COMPAT_SYSCALL_DEFINE5() 69 return keyctl_set_timeout(arg2, arg3); in COMPAT_SYSCALL_DEFINE5() 72 return keyctl_assume_authority(arg2); in COMPAT_SYSCALL_DEFINE5() 88 return keyctl_invalidate_key(arg2); in COMPAT_SYSCALL_DEFINE5() [all …]
|
A D | keyctl.c | 1881 return keyctl_update_key((key_serial_t) arg2, in SYSCALL_DEFINE5() 1886 return keyctl_revoke_key((key_serial_t) arg2); in SYSCALL_DEFINE5() 1911 return keyctl_read_key((key_serial_t) arg2, in SYSCALL_DEFINE5() 1916 return keyctl_chown_key((key_serial_t) arg2, in SYSCALL_DEFINE5() 1921 return keyctl_setperm_key((key_serial_t) arg2, in SYSCALL_DEFINE5() 1931 return keyctl_negate_key((key_serial_t) arg2, in SYSCALL_DEFINE5() 1936 return keyctl_set_reqkey_keyring(arg2); in SYSCALL_DEFINE5() 1939 return keyctl_set_timeout((key_serial_t) arg2, in SYSCALL_DEFINE5() 1954 return keyctl_reject_key((key_serial_t) arg2, in SYSCALL_DEFINE5() 1961 (key_serial_t) arg2, in SYSCALL_DEFINE5() [all …]
|
/linux/drivers/gpu/drm/amd/display/dc/inc/ |
A 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 138 return arg1.value == arg2.value; in bw_equ() 143 return arg1.value != arg2.value; in bw_neq() 148 return arg1.value <= arg2.value; in bw_leq() 153 return arg1.value >= arg2.value; in bw_meq() 158 return arg1.value < arg2.value; in bw_ltn() [all …]
|
A 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/drivers/gpu/drm/amd/display/include/ |
A D | fixed31_32.h | 137 return arg1.value < arg2.value; in dc_fixpt_lt() 146 return arg1.value <= arg2.value; in dc_fixpt_le() 155 return arg1.value == arg2.value; in dc_fixpt_eq() 164 if (arg1.value <= arg2.value) in dc_fixpt_min() 167 return arg2; in dc_fixpt_min() 176 if (arg1.value <= arg2.value) in dc_fixpt_max() 177 return arg2; in dc_fixpt_max() 252 res.value = arg1.value + arg2.value; in dc_fixpt_add() 274 ASSERT(((arg2.value >= 0) && (LLONG_MIN + arg2.value <= arg1.value)) || in dc_fixpt_sub() 275 ((arg2.value < 0) && (LLONG_MAX + arg2.value >= arg1.value))); in dc_fixpt_sub() [all …]
|
/linux/drivers/gpu/drm/amd/display/dc/calcs/ |
A D | dcn_calc_math.c | 39 float dcn_bw_mod(const float arg1, const float arg2) in dcn_bw_mod() argument 42 return arg2; in dcn_bw_mod() 43 if (isNaN(arg2)) in dcn_bw_mod() 45 return arg1 - arg1 * ((int) (arg1 / arg2)); in dcn_bw_mod() 51 return arg2; in dcn_bw_min2() 52 if (isNaN(arg2)) in dcn_bw_min2() 54 return arg1 < arg2 ? arg1 : arg2; in dcn_bw_min2() 59 return arg1 > arg2 ? arg1 : arg2; in dcn_bw_max() 64 return arg2; in dcn_bw_max2() 65 if (isNaN(arg2)) in dcn_bw_max2() [all …]
|
/linux/arch/m68k/include/asm/ |
A 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/arch/parisc/include/asm/ |
A D | unistd.h | 123 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 124 type name(type1 arg1, type2 arg2) \ 126 return K_INLINE_SYSCALL(name, 2, arg1, arg2); \ 129 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 130 type name(type1 arg1, type2 arg2, type3 arg3) \ 132 return K_INLINE_SYSCALL(name, 3, arg1, arg2, arg3); \ 135 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument 136 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) \ 138 return K_INLINE_SYSCALL(name, 4, arg1, arg2, arg3, arg4); \ 143 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) \ [all …]
|
/linux/arch/x86/um/shared/sysdep/ |
A 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()
|
A D | stub_64.h | 29 static inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument 35 : "0" (syscall), "D" (arg1), "S" (arg2) : __syscall_clobber ); in stub_syscall2() 40 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) in stub_syscall3() argument 46 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3) in stub_syscall3() 52 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument 59 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3), in stub_syscall4() 66 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3, in stub_syscall5() argument 73 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3), in stub_syscall5()
|
/linux/tools/include/nolibc/ |
A D | nolibc.h | 311 register long _arg2 asm("rsi") = (long)(arg2); \ 328 register long _arg2 asm("rsi") = (long)(arg2); \ 346 register long _arg2 asm("rsi") = (long)(arg2); \ 365 register long _arg2 asm("rsi") = (long)(arg2); \ 385 register long _arg2 asm("rsi") = (long)(arg2); \ 510 register long _arg2 asm("ecx") = (long)(arg2); \ 527 register long _arg2 asm("ecx") = (long)(arg2); \ 545 register long _arg2 asm("ecx") = (long)(arg2); \ 564 register long _arg2 asm("ecx") = (long)(arg2); \ 688 register long _arg2 asm("r1") = (long)(arg2); \ [all …]
|
/linux/arch/sparc/include/asm/ |
A D | smp_32.h | 61 unsigned long arg2, unsigned long arg3, 78 static inline void xc2(smpfunc_t func, unsigned long arg1, unsigned long arg2) in xc2() argument 80 sparc32_ipi_ops->cross_call(func, *cpu_online_mask, arg1, arg2, 0, 0); in xc2() 83 static inline void xc3(smpfunc_t func, unsigned long arg1, unsigned long arg2, in xc3() argument 87 arg1, arg2, arg3, 0); in xc3() 90 static inline void xc4(smpfunc_t func, unsigned long arg1, unsigned long arg2, in xc4() argument 94 arg1, arg2, arg3, arg4); in xc4()
|
/linux/tools/perf/scripts/python/Perf-Trace-Util/ |
A 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/arch/x86/kernel/ |
A D | process_64.c | 751 if (unlikely(arg2 >= TASK_SIZE_MAX)) in do_arch_prctl_64() 763 x86_gsbase_write_cpu_inactive(arg2); in do_arch_prctl_64() 769 task->thread.gsbase = arg2; in do_arch_prctl_64() 773 x86_gsbase_write_task(task, arg2); in do_arch_prctl_64() 783 if (unlikely(arg2 >= TASK_SIZE_MAX)) in do_arch_prctl_64() 793 x86_fsbase_write_cpu(arg2); in do_arch_prctl_64() 799 task->thread.fsbase = arg2; in do_arch_prctl_64() 802 x86_fsbase_write_task(task, arg2); in do_arch_prctl_64() 823 return prctl_map_vdso(&vdso_image_x32, arg2); in do_arch_prctl_64() 827 return prctl_map_vdso(&vdso_image_32, arg2); in do_arch_prctl_64() [all …]
|
/linux/arch/x86/um/ |
A D | syscalls_64.c | 16 unsigned long __user *arg2) in arch_prctl() argument 18 unsigned long *ptr = arg2, tmp; in arch_prctl() 68 ret = put_user(tmp, arg2); in arch_prctl() 71 ret = put_user(tmp, arg2); in arch_prctl() 78 SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2) in SYSCALL_DEFINE2() argument 80 return arch_prctl(current, option, (unsigned long __user *) arg2); in SYSCALL_DEFINE2()
|
/linux/drivers/firmware/efi/ |
A D | runtime-wrappers.c | 71 efi_rts_work.arg2 = _arg2; \ 180 void *arg1, *arg2, *arg3, *arg4, *arg5; in efi_call_rts() local 184 arg2 = efi_rts_work.arg2; in efi_call_rts() 192 (efi_time_cap_t *)arg2); in efi_call_rts() 203 (efi_time_t *)arg2); in efi_call_rts() 207 (efi_guid_t *)arg2, (u32 *)arg3, in efi_call_rts() 212 (efi_char16_t *)arg2, in efi_call_rts() 217 (efi_guid_t *)arg2, *(u32 *)arg3, in efi_call_rts() 222 (u64 *)arg2, (u64 *)arg3, (u64 *)arg4); in efi_call_rts() 230 *(unsigned long *)arg2, in efi_call_rts() [all …]
|
/linux/arch/x86/crypto/ |
A D | aesni-intel_avx-x86_64.S | 210 #define arg2 %rsi macro 291 add arg5, InLen(arg2) 421 mov %r13, PBlockLen(arg2) 520 mov PBlockLen(arg2), %r12 532 mov InLen(arg2), %r12 755 mov PBlockLen(arg2), %r13 801 mov %rax, PBlockLen(arg2) 836 mov %rax, PBlockLen(arg2) 997 vmovdqu CurCount(arg2), \CTR 1942 vmovdqu AadHash(arg2), reg_i [all …]
|
/linux/drivers/firmware/meson/ |
A D | meson_sm.c | 70 static u32 __meson_sm_call(u32 cmd, u32 arg0, u32 arg1, u32 arg2, in __meson_sm_call() argument 75 arm_smccc_smc(cmd, arg0, arg1, arg2, arg3, arg4, 0, 0, &res); in __meson_sm_call() 105 u32 *ret, u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4) in meson_sm_call() argument 116 lret = __meson_sm_call(cmd, arg0, arg1, arg2, arg3, arg4); in meson_sm_call() 144 u32 arg1, u32 arg2, u32 arg3, u32 arg4) in meson_sm_call_read() argument 158 if (meson_sm_call(fw, cmd_index, &size, arg0, arg1, arg2, arg3, arg4) < 0) in meson_sm_call_read() 193 u32 arg1, u32 arg2, u32 arg3, u32 arg4) in meson_sm_call_write() argument 208 if (meson_sm_call(fw, cmd_index, &written, arg0, arg1, arg2, arg3, arg4) < 0) in meson_sm_call_write()
|
/linux/arch/arm/mach-bcm/ |
A D | bcm_kona_smc.c | 29 unsigned arg2; member 149 writel_relaxed(data->arg2, args++); in __bcm_kona_smc() 160 unsigned arg2, unsigned arg3) in bcm_kona_smc() argument 167 data.arg2 = arg2; in bcm_kona_smc()
|
/linux/kernel/ |
A D | sys.c | 2278 if (!valid_signal(arg2)) { in SYSCALL_DEFINE5() 2282 me->pdeath_signal = arg2; in SYSCALL_DEFINE5() 2291 if (arg2 != SUID_DUMP_DISABLE && arg2 != SUID_DUMP_USER) { in SYSCALL_DEFINE5() 2367 if (arg2 <= 0) in SYSCALL_DEFINE5() 2376 switch (arg2) { in SYSCALL_DEFINE5() 2415 if (!arg2) in SYSCALL_DEFINE5() 2422 (int __user *)arg2); in SYSCALL_DEFINE5() 2444 if (arg2) in SYSCALL_DEFINE5() 2461 error = SVE_SET_VL(arg2); in SYSCALL_DEFINE5() 2508 if (arg2 == 1) in SYSCALL_DEFINE5() [all …]
|
A D | kcov.c | 241 area[start_index + 2] = arg2; in write_comp_data() 247 void notrace __sanitizer_cov_trace_cmp1(u8 arg1, u8 arg2) in __sanitizer_cov_trace_cmp1() argument 249 write_comp_data(KCOV_CMP_SIZE(0), arg1, arg2, _RET_IP_); in __sanitizer_cov_trace_cmp1() 253 void notrace __sanitizer_cov_trace_cmp2(u16 arg1, u16 arg2) in __sanitizer_cov_trace_cmp2() argument 255 write_comp_data(KCOV_CMP_SIZE(1), arg1, arg2, _RET_IP_); in __sanitizer_cov_trace_cmp2() 259 void notrace __sanitizer_cov_trace_cmp4(u32 arg1, u32 arg2) in __sanitizer_cov_trace_cmp4() argument 261 write_comp_data(KCOV_CMP_SIZE(2), arg1, arg2, _RET_IP_); in __sanitizer_cov_trace_cmp4() 265 void notrace __sanitizer_cov_trace_cmp8(u64 arg1, u64 arg2) in __sanitizer_cov_trace_cmp8() argument 267 write_comp_data(KCOV_CMP_SIZE(3), arg1, arg2, _RET_IP_); in __sanitizer_cov_trace_cmp8() 271 void notrace __sanitizer_cov_trace_const_cmp1(u8 arg1, u8 arg2) in __sanitizer_cov_trace_const_cmp1() argument [all …]
|
/linux/arch/x86/include/asm/ |
A D | paravirt_types.h | 545 #define PVOP_CALL2(rettype, op, arg1, arg2) \ argument 547 #define PVOP_VCALL2(op, arg1, arg2) \ argument 548 __PVOP_VCALL(op, PVOP_CALL_ARG1(arg1), PVOP_CALL_ARG2(arg2)) 550 #define PVOP_CALL3(rettype, op, arg1, arg2, arg3) \ argument 552 PVOP_CALL_ARG2(arg2), PVOP_CALL_ARG3(arg3)) 553 #define PVOP_VCALL3(op, arg1, arg2, arg3) \ argument 555 PVOP_CALL_ARG2(arg2), PVOP_CALL_ARG3(arg3)) 557 #define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \ argument 559 PVOP_CALL_ARG1(arg1), PVOP_CALL_ARG2(arg2), \ 561 #define PVOP_VCALL4(op, arg1, arg2, arg3, arg4) \ argument [all …]
|
/linux/arch/parisc/kernel/ |
A D | relocate_kernel.S | 61 ldo 1f-0b(%arg2), %r1 135 LDREG kexec_free_mem-0b(%arg2), %arg0 136 LDREG kexec_cmdline-0b(%arg2), %arg1 137 LDREG kexec_initrd_end-0b(%arg2), %arg3 138 LDREG kexec_initrd_start-0b(%arg2), %arg2
|
/linux/arch/sparc/kernel/ |
A D | sun4m_smp.c | 162 unsigned long arg2; member 174 unsigned long arg2, unsigned long arg3, in sun4m_cross_call() argument 185 ccall_info.arg2 = arg2; in sun4m_cross_call() 236 ccall_info.func(ccall_info.arg1, ccall_info.arg2, ccall_info.arg3, in smp4m_cross_call_irq()
|
/linux/tools/testing/ktest/examples/bootconfigs/ |
A D | tracing.bconf | 14 probes = "vfs_read $arg2 $arg3"; 17 probes = "vfs_write $arg2 +0($arg2):ustring $arg3";
|