Searched refs:arg2 (Results 1 - 25 of 182) sorted by relevance

12345678

/linux-master/security/keys/
H A Dcompat.c18 u32, arg2, u32, arg3, u32, arg4, u32, arg5)
22 return keyctl_get_keyring_ID(arg2, arg3);
25 return keyctl_join_session_keyring(compat_ptr(arg2));
28 return keyctl_update_key(arg2, compat_ptr(arg3), arg4);
31 return keyctl_revoke_key(arg2);
34 return keyctl_describe_key(arg2, compat_ptr(arg3), arg4);
37 return keyctl_keyring_clear(arg2);
40 return keyctl_keyring_link(arg2, arg3);
43 return keyctl_keyring_unlink(arg2, arg3);
46 return keyctl_keyring_search(arg2, compat_pt
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dml/calcs/
H A Ddcn_calc_math.c40 float dcn_bw_mod(const float arg1, const float arg2) argument
43 return arg2;
44 if (isNaN(arg2))
46 return arg1 - arg1 * ((int) (arg1 / arg2));
49 float dcn_bw_min2(const float arg1, const float arg2) argument
52 return arg2;
53 if (isNaN(arg2))
55 return arg1 < arg2 ? arg1 : arg2;
58 unsigned int dcn_bw_max(const unsigned int arg1, const unsigned int arg2) argument
62 dcn_bw_max2(const float arg1, const float arg2) argument
[all...]
/linux-master/arch/x86/um/
H A Dsyscalls_32.c5 SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2)
H A Dsyscalls_64.c17 unsigned long __user *arg2)
24 (unsigned long) arg2;
29 (unsigned long) arg2;
33 ret = put_user(current->thread.regs.regs.gp[FS_BASE / sizeof(unsigned long)], arg2);
36 ret = put_user(current->thread.regs.regs.gp[GS_BASE / sizeof(unsigned long)], arg2);
43 SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2)
45 return arch_prctl(current, option, (unsigned long __user *) arg2);
16 arch_prctl(struct task_struct *task, int option, unsigned long __user *arg2) argument
/linux-master/drivers/gpu/drm/amd/display/dc/inc/
H A Dbw_fixed.h43 const struct bw_fixed arg2)
45 return (arg1.value <= arg2.value) ? arg1 : arg2;
49 const struct bw_fixed arg2)
51 return (arg2.value <= arg1.value) ? arg1 : arg2;
102 const struct bw_fixed arg2)
106 res.value = arg1.value + arg2.value;
111 static inline struct bw_fixed bw_sub(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
115 res.value = arg1.value - arg2
42 bw_min2(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
48 bw_max2(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
101 bw_add(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
121 bw_div(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
126 bw_mod(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
136 bw_equ(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
141 bw_neq(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
146 bw_leq(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
151 bw_meq(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
156 bw_ltn(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
161 bw_mtn(const struct bw_fixed arg1, const struct bw_fixed arg2) argument
[all...]
H A Ddcn_calc_math.h29 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-master/arch/m68k/include/asm/
H A Dlinkage.h24 #define __asmlinkage_protect2(ret, arg1, arg2) \
25 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2))
26 #define __asmlinkage_protect3(ret, arg1, arg2, arg3) \
27 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3))
28 #define __asmlinkage_protect4(ret, arg1, arg2, arg3, arg4) \
29 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \
31 #define __asmlinkage_protect5(ret, arg1, arg2, arg3, arg4, arg5) \
32 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "m" (arg3), \
34 #define __asmlinkage_protect6(ret, arg1, arg2, arg3, arg4, arg5, arg6) \
35 __asmlinkage_protect_n(ret, "m" (arg1), "m" (arg2), "
[all...]
/linux-master/drivers/gpu/drm/amd/display/include/
H A Dfixed31_32.h133 * result = arg1 < arg2
135 static inline bool dc_fixpt_lt(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
137 return arg1.value < arg2.value;
142 * result = arg1 <= arg2
144 static inline bool dc_fixpt_le(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
146 return arg1.value <= arg2.value;
151 * result = arg1 == arg2
153 static inline bool dc_fixpt_eq(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
155 return arg1.value == arg2.value;
160 * result = min(arg1, arg2)
162 dc_fixpt_min(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
174 dc_fixpt_max(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
245 dc_fixpt_add(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
261 dc_fixpt_add_int(struct fixed31_32 arg1, int arg2) argument
270 dc_fixpt_sub(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
286 dc_fixpt_sub_int(struct fixed31_32 arg1, int arg2) argument
308 dc_fixpt_mul_int(struct fixed31_32 arg1, int arg2) argument
323 dc_fixpt_div_int(struct fixed31_32 arg1, long long arg2) argument
332 dc_fixpt_div(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
426 dc_fixpt_pow(struct fixed31_32 arg1, struct fixed31_32 arg2) argument
[all...]
/linux-master/arch/x86/um/shared/sysdep/
H A Dstub_64.h30 static __always_inline long stub_syscall2(long syscall, long arg1, long arg2) argument
36 : "0" (syscall), "D" (arg1), "S" (arg2) : __syscall_clobber );
41 static __always_inline long stub_syscall3(long syscall, long arg1, long arg2, argument
48 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3)
54 static __always_inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, argument
61 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3),
68 static __always_inline long stub_syscall5(long syscall, long arg1, long arg2, argument
75 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3),
H A Dstub_32.h35 static __always_inline long stub_syscall2(long syscall, long arg1, long arg2) argument
40 "c" (arg2)
46 static __always_inline long stub_syscall3(long syscall, long arg1, long arg2, argument
52 "c" (arg2), "d" (arg3)
58 static __always_inline long stub_syscall4(long syscall, long arg1, long arg2, argument
64 "c" (arg2), "d" (arg3), "S" (arg4)
70 static __always_inline long stub_syscall5(long syscall, long arg1, long arg2, argument
76 "c" (arg2), "d" (arg3), "S" (arg4), "D" (arg5)
/linux-master/arch/arm/mach-bcm/
H A Dbcm_kona_smc.h19 unsigned arg2,
/linux-master/include/linux/
H A Dkcov.h82 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-master/arch/x86/include/asm/
H A Dproto.h18 long do_arch_prctl_64(struct task_struct *task, int option, unsigned long arg2);
44 long do_arch_prctl_common(int option, unsigned long arg2);
/linux-master/tools/include/nolibc/
H A Darch-arm.h87 #define my_syscall2(num, arg1, arg2) \
91 register long _arg2 __asm__ ("r1") = (long)(arg2); \
105 #define my_syscall3(num, arg1, arg2, arg3) \
109 register long _arg2 __asm__ ("r1") = (long)(arg2); \
124 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
128 register long _arg2 __asm__ ("r1") = (long)(arg2); \
144 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
148 register long _arg2 __asm__ ("r1") = (long)(arg2); \
165 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
169 register long _arg2 __asm__ ("r1") = (long)(arg2); \
[all...]
H A Darch-powerpc.h64 #define my_syscall2(num, arg1, arg2) \
69 register long _arg2 __asm__ ("r4") = (long)(arg2); \
84 #define my_syscall3(num, arg1, arg2, arg3) \
89 register long _arg2 __asm__ ("r4") = (long)(arg2); \
105 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
110 register long _arg2 __asm__ ("r4") = (long)(arg2); \
128 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
133 register long _arg2 __asm__ ("r4") = (long)(arg2); \
151 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
156 register long _arg2 __asm__ ("r4") = (long)(arg2); \
[all...]
H A Darch-s390.h54 #define my_syscall2(num, arg1, arg2) \
58 register long _arg2 __asm__ ("3") = (long)(arg2); \
69 #define my_syscall3(num, arg1, arg2, arg3) \
73 register long _arg2 __asm__ ("3") = (long)(arg2); \
85 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
89 register long _arg2 __asm__ ("3") = (long)(arg2); \
102 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
106 register long _arg2 __asm__ ("3") = (long)(arg2); \
121 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
125 register long _arg2 __asm__ ("3") = (long)(arg2); \
[all...]
H A Darch-i386.h61 #define my_syscall2(num, arg1, arg2) \
66 register long _arg2 __asm__ ("ecx") = (long)(arg2); \
78 #define my_syscall3(num, arg1, arg2, arg3) \
83 register long _arg2 __asm__ ("ecx") = (long)(arg2); \
96 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
101 register long _arg2 __asm__ ("ecx") = (long)(arg2); \
115 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
120 register long _arg2 __asm__ ("ecx") = (long)(arg2); \
135 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
148 "c"(arg2), /*
[all...]
H A Darch-x86_64.h62 #define my_syscall2(num, arg1, arg2) \
67 register long _arg2 __asm__ ("rsi") = (long)(arg2); \
79 #define my_syscall3(num, arg1, arg2, arg3) \
84 register long _arg2 __asm__ ("rsi") = (long)(arg2); \
97 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
102 register long _arg2 __asm__ ("rsi") = (long)(arg2); \
116 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
121 register long _arg2 __asm__ ("rsi") = (long)(arg2); \
136 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
141 register long _arg2 __asm__ ("rsi") = (long)(arg2); \
[all...]
H A Darch-riscv.h52 #define my_syscall2(num, arg1, arg2) \
56 register long _arg2 __asm__ ("a1") = (long)(arg2); \
68 #define my_syscall3(num, arg1, arg2, arg3) \
72 register long _arg2 __asm__ ("a1") = (long)(arg2); \
85 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
89 register long _arg2 __asm__ ("a1") = (long)(arg2); \
103 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
107 register long _arg2 __asm__ ("a1") = (long)(arg2); \
122 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
126 register long _arg2 __asm__ ("a1") = (long)(arg2); \
[all...]
H A Darch-aarch64.h54 #define my_syscall2(num, arg1, arg2) \
58 register long _arg2 __asm__ ("x1") = (long)(arg2); \
70 #define my_syscall3(num, arg1, arg2, arg3) \
74 register long _arg2 __asm__ ("x1") = (long)(arg2); \
87 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
91 register long _arg2 __asm__ ("x1") = (long)(arg2); \
105 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
109 register long _arg2 __asm__ ("x1") = (long)(arg2); \
124 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
128 register long _arg2 __asm__ ("x1") = (long)(arg2); \
[all...]
H A Darch-loongarch.h55 #define my_syscall2(num, arg1, arg2) \
59 register long _arg2 __asm__ ("a1") = (long)(arg2); \
71 #define my_syscall3(num, arg1, arg2, arg3) \
75 register long _arg2 __asm__ ("a1") = (long)(arg2); \
88 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
92 register long _arg2 __asm__ ("a1") = (long)(arg2); \
106 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
110 register long _arg2 __asm__ ("a1") = (long)(arg2); \
125 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
129 register long _arg2 __asm__ ("a1") = (long)(arg2); \
[all...]
H A Darch-mips.h75 #define my_syscall2(num, arg1, arg2) \
79 register long _arg2 __asm__ ("a1") = (long)(arg2); \
94 #define my_syscall3(num, arg1, arg2, arg3) \
98 register long _arg2 __asm__ ("a1") = (long)(arg2); \
114 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
118 register long _arg2 __asm__ ("a1") = (long)(arg2); \
134 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
138 register long _arg2 __asm__ ("a1") = (long)(arg2); \
156 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \
160 register long _arg2 __asm__ ("a1") = (long)(arg2); \
[all...]
/linux-master/arch/sparc/include/asm/
H A Dsmp_32.h58 unsigned long arg2, unsigned long arg3,
75 static inline void xc2(void *func, unsigned long arg1, unsigned long arg2) argument
77 sparc32_ipi_ops->cross_call(func, *cpu_online_mask, arg1, arg2, 0, 0);
80 static inline void xc3(void *func, unsigned long arg1, unsigned long arg2, argument
84 arg1, arg2, arg3, 0);
87 static inline void xc4(void *func, unsigned long arg1, unsigned long arg2, argument
91 arg1, arg2, arg3, arg4);
/linux-master/arch/parisc/include/asm/
H A Dunistd.h119 #define _syscall2(type,name,type1,arg1,type2,arg2) \
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) \
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) \
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,type
[all...]
/linux-master/include/linux/firmware/meson/
H A Dmeson_sm.h22 s32 *ret, u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4);
25 u32 arg1, u32 arg2, u32 arg3, u32 arg4);
28 u32 arg1, u32 arg2, u32 arg3, u32 arg4);

Completed in 249 milliseconds

12345678