Home
last modified time | relevance | path

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

12345678

/linux/drivers/gpu/drm/amd/display/dc/inc/
H A Dbw_fixed.h42 static inline struct bw_fixed bw_min2(const struct bw_fixed arg1, in bw_min2() argument
45 return (arg1.value <= arg2.value) ? arg1 : arg2; in bw_min2()
48 static inline struct bw_fixed bw_max2(const struct bw_fixed arg1, in bw_max2() argument
51 return (arg2.value <= arg1.value) ? arg1 : arg2; in bw_max2()
101 static inline struct bw_fixed bw_add(const struct bw_fixed arg1, 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 in bw_sub()
121 bw_div(const struct bw_fixed arg1,const struct bw_fixed arg2) bw_div() argument
126 bw_mod(const struct bw_fixed arg1,const struct bw_fixed arg2) bw_mod() argument
136 bw_equ(const struct bw_fixed arg1,const struct bw_fixed arg2) bw_equ() argument
141 bw_neq(const struct bw_fixed arg1,const struct bw_fixed arg2) bw_neq() argument
146 bw_leq(const struct bw_fixed arg1,const struct bw_fixed arg2) bw_leq() argument
151 bw_meq(const struct bw_fixed arg1,const struct bw_fixed arg2) bw_meq() argument
156 bw_ltn(const struct bw_fixed arg1,const struct bw_fixed arg2) bw_ltn() argument
161 bw_mtn(const struct bw_fixed arg1,const struct bw_fixed arg2) bw_mtn() argument
[all...]
/linux/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) in dc_fixpt_lt() argument
137 return arg1.value < arg2.value; in dc_fixpt_lt()
142 * result = arg1 <= arg2
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()
151 * result = arg1 == arg2
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()
160 * result = min(arg1, arg
162 dc_fixpt_min(struct fixed31_32 arg1,struct fixed31_32 arg2) dc_fixpt_min() argument
174 dc_fixpt_max(struct fixed31_32 arg1,struct fixed31_32 arg2) dc_fixpt_max() argument
245 dc_fixpt_add(struct fixed31_32 arg1,struct fixed31_32 arg2) dc_fixpt_add() argument
261 dc_fixpt_add_int(struct fixed31_32 arg1,int arg2) dc_fixpt_add_int() argument
270 dc_fixpt_sub(struct fixed31_32 arg1,struct fixed31_32 arg2) dc_fixpt_sub() argument
286 dc_fixpt_sub_int(struct fixed31_32 arg1,int arg2) dc_fixpt_sub_int() argument
308 dc_fixpt_mul_int(struct fixed31_32 arg1,int arg2) dc_fixpt_mul_int() argument
323 dc_fixpt_div_int(struct fixed31_32 arg1,long long arg2) dc_fixpt_div_int() argument
332 dc_fixpt_div(struct fixed31_32 arg1,struct fixed31_32 arg2) dc_fixpt_div() argument
426 dc_fixpt_pow(struct fixed31_32 arg1,struct fixed31_32 arg2) dc_fixpt_pow() argument
[all...]
/linux/drivers/gpu/drm/amd/display/dc/sspl/
H A Dspl_fixpt31_32.h115 * result = arg1 < arg2
117 static inline bool spl_fixpt_lt(struct spl_fixed31_32 arg1, struct spl_fixed31_32 arg2) in spl_fixpt_lt() argument
119 return arg1.value < arg2.value; in spl_fixpt_lt()
124 * result = arg1 <= arg2
126 static inline bool spl_fixpt_le(struct spl_fixed31_32 arg1, struct spl_fixed31_32 arg2) in spl_fixpt_le() argument
128 return arg1.value <= arg2.value; in spl_fixpt_le()
133 * result = arg1 == arg2
135 static inline bool spl_fixpt_eq(struct spl_fixed31_32 arg1, struct spl_fixed31_32 arg2) in spl_fixpt_eq() argument
137 return arg1.value == arg2.value; in spl_fixpt_eq()
142 * result = min(arg1, arg
144 spl_fixpt_min(struct spl_fixed31_32 arg1,struct spl_fixed31_32 arg2) spl_fixpt_min() argument
156 spl_fixpt_max(struct spl_fixed31_32 arg1,struct spl_fixed31_32 arg2) spl_fixpt_max() argument
227 spl_fixpt_add(struct spl_fixed31_32 arg1,struct spl_fixed31_32 arg2) spl_fixpt_add() argument
243 spl_fixpt_add_int(struct spl_fixed31_32 arg1,int arg2) spl_fixpt_add_int() argument
252 spl_fixpt_sub(struct spl_fixed31_32 arg1,struct spl_fixed31_32 arg2) spl_fixpt_sub() argument
268 spl_fixpt_sub_int(struct spl_fixed31_32 arg1,int arg2) spl_fixpt_sub_int() argument
290 spl_fixpt_mul_int(struct spl_fixed31_32 arg1,int arg2) spl_fixpt_mul_int() argument
305 spl_fixpt_div_int(struct spl_fixed31_32 arg1,long long arg2) spl_fixpt_div_int() argument
314 spl_fixpt_div(struct spl_fixed31_32 arg1,struct spl_fixed31_32 arg2) spl_fixpt_div() argument
408 spl_fixpt_pow(struct spl_fixed31_32 arg1,struct spl_fixed31_32 arg2) spl_fixpt_pow() argument
[all...]
/linux/drivers/gpu/drm/amd/display/dc/dml/calcs/
H A Ddcn_calc_math.c40 float dcn_bw_mod(const float arg1, const float arg2) in dcn_bw_mod() argument
42 if (isNaN(arg1)) in dcn_bw_mod()
45 return arg1; 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
51 if (isNaN(arg1)) in dcn_bw_min2()
54 return arg1; in dcn_bw_min2()
55 return arg1 < arg in dcn_bw_min2()
58 dcn_bw_max(const unsigned int arg1,const unsigned int arg2) dcn_bw_max() argument
62 dcn_bw_max2(const float arg1,const float arg2) dcn_bw_max2() argument
[all...]
/linux/tools/include/nolibc/
H A Darch-x86.h47 #define my_syscall1(num, arg1) \ argument
51 register long _arg1 __asm__ ("ebx") = (long)(arg1); \
63 #define my_syscall2(num, arg1, arg2) \ argument
67 register long _arg1 __asm__ ("ebx") = (long)(arg1); \
80 #define my_syscall3(num, arg1, arg2, arg3) \ argument
84 register long _arg1 __asm__ ("ebx") = (long)(arg1); \
98 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
102 register long _arg1 __asm__ ("ebx") = (long)(arg1); \
117 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
121 register long _arg1 __asm__ ("ebx") = (long)(arg1); \
137 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
215 my_syscall1(num,arg1) global() argument
231 my_syscall2(num,arg1,arg2) global() argument
248 my_syscall3(num,arg1,arg2,arg3) global() argument
266 my_syscall4(num,arg1,arg2,arg3,arg4) global() argument
285 my_syscall5(num,arg1,arg2,arg3,arg4,arg5) global() argument
305 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-m68k.h31 #define my_syscall1(num, arg1) \ argument
34 register long _arg1 __asm__ ("d1") = (long)(arg1); \
45 #define my_syscall2(num, arg1, arg2) \ argument
48 register long _arg1 __asm__ ("d1") = (long)(arg1); \
60 #define my_syscall3(num, arg1, arg2, arg3) \ argument
63 register long _arg1 __asm__ ("d1") = (long)(arg1); \
76 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
79 register long _arg1 __asm__ ("d1") = (long)(arg1); \
93 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
96 register long _arg1 __asm__ ("d1") = (long)(arg1); \
111 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-arm64.h39 #define my_syscall1(num, arg1) \ argument
42 register long _arg1 __asm__ ("x0") = (long)(arg1); \
54 #define my_syscall2(num, arg1, arg2) \ argument
57 register long _arg1 __asm__ ("x0") = (long)(arg1); \
70 #define my_syscall3(num, arg1, arg2, arg3) \ argument
73 register long _arg1 __asm__ ("x0") = (long)(arg1); \
87 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
90 register long _arg1 __asm__ ("x0") = (long)(arg1); \
105 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
108 register long _arg1 __asm__ ("x0") = (long)(arg1); \
124 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-riscv.h38 #define my_syscall1(num, arg1) \ argument
41 register long _arg1 __asm__ ("a0") = (long)(arg1); \
52 #define my_syscall2(num, arg1, arg2) \ argument
55 register long _arg1 __asm__ ("a0") = (long)(arg1); \
68 #define my_syscall3(num, arg1, arg2, arg3) \ argument
71 register long _arg1 __asm__ ("a0") = (long)(arg1); \
85 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
88 register long _arg1 __asm__ ("a0") = (long)(arg1); \
103 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
106 register long _arg1 __asm__ ("a0") = (long)(arg1); \
122 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-mips.h78 #define my_syscall1(num, arg1) \ argument
81 register long _arg1 __asm__ ("a0") = (long)(arg1); \
96 #define my_syscall2(num, arg1, arg2) \ argument
99 register long _arg1 __asm__ ("a0") = (long)(arg1); \
115 #define my_syscall3(num, arg1, arg2, arg3) \ argument
118 register long _arg1 __asm__ ("a0") = (long)(arg1); \
135 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
138 register long _arg1 __asm__ ("a0") = (long)(arg1); \
157 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
160 register long _arg1 __asm__ ("a0") = (long)(arg1); \
179 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
206 my_syscall5(num,arg1,arg2,arg3,arg4,arg5) global() argument
225 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-sh.h36 #define my_syscall1(num, arg1) \ argument
40 register long _arg1 __asm__ ("r4") = (long)(arg1); \
51 #define my_syscall2(num, arg1, arg2) \ argument
55 register long _arg1 __asm__ ("r4") = (long)(arg1); \
67 #define my_syscall3(num, arg1, arg2, arg3) \ argument
71 register long _arg1 __asm__ ("r4") = (long)(arg1); \
84 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
88 register long _arg1 __asm__ ("r4") = (long)(arg1); \
102 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
106 register long _arg1 __asm__ ("r4") = (long)(arg1); \
122 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-powerpc.h45 #define my_syscall1(num, arg1) \ argument
49 register long _arg1 __asm__ ("r3") = (long)(arg1); \
64 #define my_syscall2(num, arg1, arg2) \ argument
68 register long _arg1 __asm__ ("r3") = (long)(arg1); \
84 #define my_syscall3(num, arg1, arg2, arg3) \ argument
88 register long _arg1 __asm__ ("r3") = (long)(arg1); \
105 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
109 register long _arg1 __asm__ ("r3") = (long)(arg1); \
128 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
132 register long _arg1 __asm__ ("r3") = (long)(arg1); \
151 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-arm.h70 #define my_syscall1(num, arg1) \ argument
73 register long _arg1 __asm__ ("r0") = (long)(arg1); \
87 #define my_syscall2(num, arg1, arg2) \ argument
90 register long _arg1 __asm__ ("r0") = (long)(arg1); \
105 #define my_syscall3(num, arg1, arg2, arg3) \ argument
108 register long _arg1 __asm__ ("r0") = (long)(arg1); \
124 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
127 register long _arg1 __asm__ ("r0") = (long)(arg1); \
144 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
147 register long _arg1 __asm__ ("r0") = (long)(arg1); \
165 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-sparc.h55 #define my_syscall1(num, arg1) \ argument
58 register long _arg1 __asm__ ("o0") = (long)(arg1); \
69 #define my_syscall2(num, arg1, arg2) \ argument
72 register long _arg1 __asm__ ("o0") = (long)(arg1); \
84 #define my_syscall3(num, arg1, arg2, arg3) \ argument
87 register long _arg1 __asm__ ("o0") = (long)(arg1); \
100 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
103 register long _arg1 __asm__ ("o0") = (long)(arg1); \
117 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
120 register long _arg1 __asm__ ("o0") = (long)(arg1); \
135 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
H A Darch-s390.h41 #define my_syscall1(num, arg1) \ argument
44 register long _arg1 __asm__ ("2") = (long)(arg1); \
55 #define my_syscall2(num, arg1, arg2) \ argument
58 register long _arg1 __asm__ ("2") = (long)(arg1); \
70 #define my_syscall3(num, arg1, arg2, arg3) \ argument
73 register long _arg1 __asm__ ("2") = (long)(arg1); \
86 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ argument
89 register long _arg1 __asm__ ("2") = (long)(arg1); \
103 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ argument
106 register long _arg1 __asm__ ("2") = (long)(arg1); \
122 my_syscall6(num,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
/linux/drivers/gpu/drm/amd/display/dc/dml2/dml21/src/dml2_standalone_libraries/
H A Dlib_float_math.c20 double math_mod(const double arg1, const double arg2) in math_mod() argument
22 if (isNaN(arg1)) in math_mod()
25 return arg1; in math_mod()
26 return arg1 - arg1 * ((int)(arg1 / arg2)); in math_mod()
29 double math_min2(const double arg1, const double arg2) in math_min2() argument
31 if (isNaN(arg1)) in math_min2()
34 return arg1; in math_min2()
35 return arg1 < arg in math_min2()
38 math_max2(const double arg1,const double arg2) math_max2() argument
[all...]
/linux/arch/m68k/include/asm/
H A Dlinkage.h22 #define __asmlinkage_protect1(ret, arg1) \ argument
23 __asmlinkage_protect_n(ret, "m" (arg1))
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), "
34 __asmlinkage_protect6(ret,arg1,arg2,arg3,arg4,arg5,arg6) global() argument
[all...]
/linux/arch/x86/um/shared/sysdep/
H A Dstub_64.h32 static __always_inline long stub_syscall1(long syscall, long arg1) in stub_syscall1() argument
38 : "0" (syscall), "D" (arg1) : __syscall_clobber ); in stub_syscall1()
43 static __always_inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument
49 : "0" (syscall), "D" (arg1), "S" (arg2) : __syscall_clobber ); in stub_syscall2()
54 static __always_inline long stub_syscall3(long syscall, long arg1, long arg2, in stub_syscall3() argument
61 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3) in stub_syscall3()
67 static __always_inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument
74 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3), in stub_syscall4()
81 static __always_inline long stub_syscall5(long syscall, long arg1, long arg2, in stub_syscall5() argument
88 : "0" (syscall), "D" (arg1), " in stub_syscall5()
95 stub_syscall6(long syscall,long arg1,long arg2,long arg3,long arg4,long arg5,long arg6) stub_syscall6() argument
[all...]
/linux/tools/testing/selftests/bpf/
H A Dsdt.h341 #define _SDT_ASM_OPERANDS_1(arg1) _SDT_ARG(1, arg1)
342 #define _SDT_ASM_OPERANDS_2(arg1, arg2) \
343 _SDT_ASM_OPERANDS_1(arg1), _SDT_ARG(2, arg2)
344 #define _SDT_ASM_OPERANDS_3(arg1, arg2, arg3) \
345 _SDT_ASM_OPERANDS_2(arg1, arg2), _SDT_ARG(3, arg3)
346 #define _SDT_ASM_OPERANDS_4(arg1, arg2, arg3, arg4) \
347 _SDT_ASM_OPERANDS_3(arg1, arg2, arg3), _SDT_ARG(4, arg4)
348 #define _SDT_ASM_OPERANDS_5(arg1, arg2, arg3, arg4, arg5) \
349 _SDT_ASM_OPERANDS_4(arg1, arg
[all...]
/linux/arch/x86/include/asm/
H A Dparavirt_types.h477 #define PVOP_CALL1(rettype, op, arg1) \ argument
478 __PVOP_CALL(rettype, op, PVOP_CALL_ARG1(arg1))
479 #define PVOP_VCALL1(op, arg1) \ argument
480 __PVOP_VCALL(op, PVOP_CALL_ARG1(arg1))
481 #define PVOP_ALT_VCALL1(op, arg1, alt, cond) \ argument
482 __PVOP_ALT_VCALL(op, alt, cond, PVOP_CALL_ARG1(arg1))
484 #define PVOP_CALLEE1(rettype, op, arg1) \ argument
485 __PVOP_CALLEESAVE(rettype, op, PVOP_CALL_ARG1(arg1))
486 #define PVOP_VCALLEE1(op, arg1) \ argument
487 __PVOP_VCALLEESAVE(op, PVOP_CALL_ARG1(arg1))
488 PVOP_ALT_CALLEE1(rettype,op,arg1,alt,cond) global() argument
490 PVOP_ALT_VCALLEE1(op,arg1,alt,cond) global() argument
494 PVOP_CALL2(rettype,op,arg1,arg2) global() argument
496 PVOP_VCALL2(op,arg1,arg2) global() argument
499 PVOP_CALL3(rettype,op,arg1,arg2,arg3) global() argument
502 PVOP_VCALL3(op,arg1,arg2,arg3) global() argument
506 PVOP_CALL4(rettype,op,arg1,arg2,arg3,arg4) global() argument
510 PVOP_VCALL4(op,arg1,arg2,arg3,arg4) global() argument
[all...]
/linux/arch/sparc/include/asm/
H A Dsmp_32.h57 void (*cross_call)(void *func, cpumask_t mask, unsigned long arg1,
71 static inline void xc1(void *func, unsigned long arg1) in xc1() argument
73 sparc32_ipi_ops->cross_call(func, *cpu_online_mask, arg1, 0, 0, 0); in xc1()
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/tools/testing/selftests/kvm/include/
H A Ducall_common.h53 #define GUEST_SYNC_ARGS(stage, arg1, arg2, arg3, arg4) \ argument
54 ucall(UCALL_SYNC, 6, "hello", stage, arg1, arg2, arg3, arg4)
57 #define GUEST_SYNC2(arg0, arg1) ucall(UCALL_SYNC, 2, arg0, arg1) argument
58 #define GUEST_SYNC3(arg0, arg1, arg2) \ argument
59 ucall(UCALL_SYNC, 3, arg0, arg1, arg2)
60 #define GUEST_SYNC4(arg0, arg1, arg2, arg3) \ argument
61 ucall(UCALL_SYNC, 4, arg0, arg1, arg2, arg3)
62 #define GUEST_SYNC5(arg0, arg1, arg2, arg3, arg4) \ argument
63 ucall(UCALL_SYNC, 5, arg0, arg1, arg
64 GUEST_SYNC6(arg0,arg1,arg2,arg3,arg4,arg5) global() argument
[all...]
/linux/arch/parisc/include/asm/
H A Dunistd.h109 #define syscall1(name, arg1) \ argument
110 K_INLINE_SYSCALL(name, 1, arg1)
111 #define syscall2(name, arg1, arg2) \ argument
112 K_INLINE_SYSCALL(name, 2, arg1, arg2)
113 #define syscall3(name, arg1, arg2, arg3) \ argument
114 K_INLINE_SYSCALL(name, 3, arg1, arg2, arg3)
115 #define syscall4(name, arg1, arg2, arg3, arg4) \ argument
116 K_INLINE_SYSCALL(name, 4, arg1, arg2, arg3, arg4)
117 #define syscall5(name, arg1, arg2, arg3, arg4, arg5) \ argument
118 K_INLINE_SYSCALL(name, 5, arg1, arg
[all...]
/linux/include/linux/
H A Dkcov.h110 void __sanitizer_cov_trace_cmp1(u8 arg1, u8 arg2);
111 void __sanitizer_cov_trace_cmp2(u16 arg1, u16 arg2);
112 void __sanitizer_cov_trace_cmp4(u32 arg1, u32 arg2);
113 void __sanitizer_cov_trace_cmp8(kcov_u64 arg1, kcov_u64 arg2);
114 void __sanitizer_cov_trace_const_cmp1(u8 arg1, u8 arg2);
115 void __sanitizer_cov_trace_const_cmp2(u16 arg1, u16 arg2);
116 void __sanitizer_cov_trace_const_cmp4(u32 arg1, u32 arg2);
117 void __sanitizer_cov_trace_const_cmp8(kcov_u64 arg1, kcov_u64 arg2);
/linux/arch/parisc/kernel/
H A Dreal2.S61 ldw 0(%arg1), %arg0 /* note overwriting arg0 */
62 ldw -8(%arg1), %arg2
63 ldw -12(%arg1), %arg3
64 ldw -4(%arg1), %arg1 /* obviously must do this one last! */
240 ldd 0*REG_SZ(%arg1), %arg0 /* note overwriting arg0 */
241 ldd 2*REG_SZ(%arg1), %arg2
242 ldd 3*REG_SZ(%arg1), %arg3
243 ldd 4*REG_SZ(%arg1), %r22
244 ldd 5*REG_SZ(%arg1),
[all...]
/linux/arch/loongarch/include/asm/
H A Dkvm_para.h83 unsigned long arg0, unsigned long arg1) in kvm_hypercall2() argument
88 register unsigned long a2 asm("a2") = arg1; in kvm_hypercall2()
101 unsigned long arg0, unsigned long arg1, unsigned long arg2) in kvm_hypercall3() argument
106 register unsigned long a2 asm("a2") = arg1; in kvm_hypercall3()
120 unsigned long arg0, unsigned long arg1, in kvm_hypercall4() argument
126 register unsigned long a2 asm("a2") = arg1; in kvm_hypercall4()
141 unsigned long arg0, unsigned long arg1, in kvm_hypercall5() argument
147 register unsigned long a2 asm("a2") = arg1; in kvm_hypercall5()

12345678