Home
last modified time | relevance | path

Searched refs:arg1 (Results 1 - 25 of 1010) sorted by relevance

12345678910>>...41

/third_party/rust/crates/libc/src/solid/
H A Dmod.rs442 pub fn clearerr(arg1: *mut FILE); in clearerr()
443 pub fn fclose(arg1: *mut FILE) -> c_int; in fclose()
444 pub fn feof(arg1: *mut FILE) -> c_int; in feof()
445 pub fn ferror(arg1: *mut FILE) -> c_int; in ferror()
446 pub fn fflush(arg1: *mut FILE) -> c_int; in fflush()
447 pub fn fgetc(arg1: *mut FILE) -> c_int; in fgetc()
448 pub fn fgets(arg1: *mut c_char, arg2: c_int, arg3: *mut FILE) -> *mut c_char; in fgets()
449 pub fn fopen(arg1: *const c_char, arg2: *const c_char) -> *mut FILE; in fopen()
450 pub fn fprintf(arg1: *mut FILE, arg2: *const c_char, ...) -> c_int; in fprintf()
451 pub fn fputc(arg1 in fprintf()
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_safe_arithmetic.cpp21 // Returns the result of adding arg1 and arg2 if it will fit in a T (where T is
25 T SafeAdd(T arg1, T arg2) { in SafeAdd() argument
32 if ((arg1 >= 0 && arg2 <= std::numeric_limits<T>::max() - arg1) || in SafeAdd()
33 (arg1 < 0 && arg2 >= std::numeric_limits<T>::min() - arg1)) { in SafeAdd()
34 return arg1 + arg2; in SafeAdd()
41 // Returns the result of multiplying arg1 and arg2 if it will fit in a T (where
45 T SafeUnsignedMult(T arg1, T arg2) { in SafeUnsignedMult() argument
46 if (arg1 in SafeUnsignedMult()
56 SafeInt32Add(std::int32_t arg1, std::int32_t arg2, std::int32_t *result) SafeInt32Add() argument
65 SafeInt32Add(std::int32_t arg1, std::int32_t arg2) SafeInt32Add() argument
69 SafeInt64Add(std::int64_t arg1, std::int64_t arg2) SafeInt64Add() argument
73 SafeUint32Add(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t *result) SafeUint32Add() argument
83 SafeUint32Add(std::uint32_t arg1, std::uint32_t arg2) SafeUint32Add() argument
87 SafeUint64Add(std::uint64_t arg1, std::uint64_t arg2) SafeUint64Add() argument
91 SafeInt32Sub(std::int32_t arg1, std::int32_t arg2, std::int32_t *result) SafeInt32Sub() argument
101 SafeInt32Sub(std::int32_t arg1, std::int32_t arg2) SafeInt32Sub() argument
111 SafeUint32Sub(std::uint32_t arg1, std::uint32_t arg2) SafeUint32Sub() argument
120 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t *result) SafeUint32Mult() argument
130 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t arg3, std::uint32_t *result) SafeUint32Mult() argument
140 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t arg3, std::uint32_t arg4, std::uint32_t *result) SafeUint32Mult() argument
150 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2) SafeUint32Mult() argument
154 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t arg3) SafeUint32Mult() argument
159 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t arg3, std::uint32_t arg4) SafeUint32Mult() argument
164 SafeInt32Mult(std::int32_t arg1, std::int32_t arg2) SafeInt32Mult() argument
176 SafeSizetMult(std::size_t arg1, std::size_t arg2) SafeSizetMult() argument
182 SafeInt64MultSlow(std::int64_t arg1, std::int64_t arg2) SafeInt64MultSlow() argument
210 SafeUint32DivideUp(std::uint32_t arg1, std::uint32_t arg2) SafeUint32DivideUp() argument
[all...]
H A Ddng_safe_arithmetic.h37 // If the result of adding arg1 and arg2 will fit in an int32_t (without
40 bool SafeInt32Add(std::int32_t arg1, std::int32_t arg2, std::int32_t *result);
42 // Returns the result of adding arg1 and arg2 if it will fit in the result type
45 std::int32_t SafeInt32Add(std::int32_t arg1, std::int32_t arg2);
46 std::int64_t SafeInt64Add(std::int64_t arg1, std::int64_t arg2);
48 // If the result of adding arg1 and arg2 will fit in a uint32_t (without
51 bool SafeUint32Add(std::uint32_t arg1, std::uint32_t arg2,
54 // Returns the result of adding arg1 and arg2 if it will fit in the result type
57 std::uint32_t SafeUint32Add(std::uint32_t arg1, std::uint32_t arg2);
58 std::uint64_t SafeUint64Add(std::uint64_t arg1, st
113 SafeInt64MultByClang(std::int64_t arg1, std::int64_t arg2) SafeInt64MultByClang() argument
130 SafeInt64MultByInt128(std::int64_t arg1, std::int64_t arg2) SafeInt64MultByClang() argument
149 SafeInt64Mult(std::int64_t arg1, std::int64_t arg2) SafeInt64Mult() argument
[all...]
/kernel/linux/linux-5.10/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...]
/kernel/linux/linux-6.6/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...]
/kernel/linux/linux-6.6/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...]
/foundation/communication/netmanager_base/services/netmanagernative/bpf/include/netfirewall/
H A Dnetfirewall_event.h109 static __always_inline void log_dbg_any(enum debug_type type, __u32 arg1) in log_dbg_any() argument
113 .arg1 = arg1, in log_dbg_any()
119 static __always_inline void log_dbg(enum debug_type type, enum stream_dir dir, __u32 arg1) in log_dbg() argument
124 .arg1 = arg1, in log_dbg()
130 static __always_inline void log_dbg2(enum debug_type type, enum stream_dir dir, __u32 arg1, __u32 arg2) in log_dbg2() argument
135 .arg1 = arg1, in log_dbg2()
142 static __always_inline void log_dbg3(enum debug_type type, enum stream_dir dir, __u32 arg1, __u3 argument
155 log_dbg4(enum debug_type type, enum stream_dir dir, __u32 arg1, __u32 arg2, __u32 arg3, __u32 arg4) log_dbg4() argument
170 log_dbg5(enum debug_type type, enum stream_dir dir, __u32 arg1, __u32 arg2, __u32 arg3, __u32 arg4, __u32 arg5) log_dbg5() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/include/
H A Dfixed31_32.h139 * result = arg1 < arg2
141 static inline bool dc_fixpt_lt(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_lt() argument
143 return arg1.value < arg2.value; in dc_fixpt_lt()
148 * result = arg1 <= arg2
150 static inline bool dc_fixpt_le(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_le() argument
152 return arg1.value <= arg2.value; in dc_fixpt_le()
157 * result = arg1 == arg2
159 static inline bool dc_fixpt_eq(struct fixed31_32 arg1, struct fixed31_32 arg2) in dc_fixpt_eq() argument
161 return arg1.value == arg2.value; in dc_fixpt_eq()
166 * result = min(arg1, arg
168 dc_fixpt_min(struct fixed31_32 arg1, struct fixed31_32 arg2) dc_fixpt_min() argument
180 dc_fixpt_max(struct fixed31_32 arg1, struct fixed31_32 arg2) dc_fixpt_max() argument
251 dc_fixpt_add(struct fixed31_32 arg1, struct fixed31_32 arg2) dc_fixpt_add() argument
267 dc_fixpt_add_int(struct fixed31_32 arg1, int arg2) dc_fixpt_add_int() argument
276 dc_fixpt_sub(struct fixed31_32 arg1, struct fixed31_32 arg2) dc_fixpt_sub() argument
292 dc_fixpt_sub_int(struct fixed31_32 arg1, int arg2) dc_fixpt_sub_int() argument
314 dc_fixpt_mul_int(struct fixed31_32 arg1, int arg2) dc_fixpt_mul_int() argument
329 dc_fixpt_div_int(struct fixed31_32 arg1, long long arg2) dc_fixpt_div_int() argument
338 dc_fixpt_div(struct fixed31_32 arg1, struct fixed31_32 arg2) dc_fixpt_div() argument
432 dc_fixpt_pow(struct fixed31_32 arg1, struct fixed31_32 arg2) dc_fixpt_pow() argument
[all...]
/kernel/linux/linux-6.6/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...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/calcs/
H A Ddcn_calc_math.c39 float dcn_bw_mod(const float arg1, const float arg2) in dcn_bw_mod() argument
41 if (isNaN(arg1)) in dcn_bw_mod()
44 return arg1; in dcn_bw_mod()
45 return arg1 - arg1 * ((int) (arg1 / arg2)); in dcn_bw_mod()
48 float dcn_bw_min2(const float arg1, const float arg2) in dcn_bw_min2() argument
50 if (isNaN(arg1)) in dcn_bw_min2()
53 return arg1; in dcn_bw_min2()
54 return arg1 < arg in dcn_bw_min2()
57 dcn_bw_max(const unsigned int arg1, const unsigned int arg2) dcn_bw_max() argument
61 dcn_bw_max2(const float arg1, const float arg2) dcn_bw_max2() argument
[all...]
/kernel/linux/linux-5.10/arch/m68k/include/asm/
H A Dlinkage.h22 #define __asmlinkage_protect1(ret, arg1) \
23 __asmlinkage_protect_n(ret, "m" (arg1))
24 #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), "
[all...]
/kernel/linux/linux-6.6/arch/m68k/include/asm/
H A Dlinkage.h22 #define __asmlinkage_protect1(ret, arg1) \
23 __asmlinkage_protect_n(ret, "m" (arg1))
24 #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), "
[all...]
/third_party/typescript/tests/baselines/reference/
H A DfatarrowfunctionsOptionalArgs.js32 (arg1, arg2) => 12;
33 (arg1 = 1, arg2 =3) => 13;
34 (arg1?, arg2?) => 14;
35 (arg1: number, arg2: number) => 15;
36 (arg1: number = 0, arg2: number = 1) => 16;
37 (arg1?: number, arg2?: number) => 17;
38 (arg1, ...arg2: number[]) => 18;
39 (arg1, arg2?: number) => 19;
109 ((arg1, arg2?) => 0) + '' + ((arg1,arg
[all...]
H A DtsxStatelessFunctionComponentsWithTypeArguments3.js9 function Baz<T extends {b: number}, U extends {a: boolean, b:string}>(arg1: T, arg2: U) {
10 let a0 = <OverloadComponent {...arg1} a="hello" ignore-prop />;
13 let a3 = <OverloadComponent {...arg1} ignore-prop />;
15 let a5 = <OverloadComponent {...arg2} ignore-prop="hello" {...arg1} />;
16 let a6 = <OverloadComponent {...arg2} ignore-prop {...arg1} />;
20 declare function Link<U>(l: {func: (arg1:U, arg2: string)=>void}): JSX.Element;
31 function Baz(arg1, arg2) {
32 var a0 = <OverloadComponent {...arg1} a="hello" ignore-prop/>;
35 var a3 = <OverloadComponent {...arg1} ignore-prop/>;
37 var a5 = <OverloadComponent {...arg2} ignore-prop="hello" {...arg1}/>;
[all...]
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dtrace.h287 # define OSSL_TRACE1(category, format, arg1) \
288 OSSL_TRACEV(category, (trc_out, format, arg1))
289 # define OSSL_TRACE2(category, format, arg1, arg2) \
290 OSSL_TRACEV(category, (trc_out, format, arg1, arg2))
291 # define OSSL_TRACE3(category, format, arg1, arg2, arg3) \
292 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3))
293 # define OSSL_TRACE4(category, format, arg1, arg2, arg3, arg4) \
294 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4))
295 # define OSSL_TRACE5(category, format, arg1, arg2, arg3, arg4, arg5) \
296 OSSL_TRACEV(category, (trc_out, format, arg1, arg
[all...]
/third_party/openssl/include/openssl/
H A Dtrace.h287 # define OSSL_TRACE1(category, format, arg1) \
288 OSSL_TRACEV(category, (trc_out, format, arg1))
289 # define OSSL_TRACE2(category, format, arg1, arg2) \
290 OSSL_TRACEV(category, (trc_out, format, arg1, arg2))
291 # define OSSL_TRACE3(category, format, arg1, arg2, arg3) \
292 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3))
293 # define OSSL_TRACE4(category, format, arg1, arg2, arg3, arg4) \
294 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4))
295 # define OSSL_TRACE5(category, format, arg1, arg2, arg3, arg4, arg5) \
296 OSSL_TRACEV(category, (trc_out, format, arg1, arg
[all...]
/third_party/node/deps/v8/src/third_party/valgrind/
H A Dvalgrind.h708 #define CALL_FN_v_W(fnptr, arg1) \
710 CALL_FN_W_W(_junk,fnptr,arg1); } while (0)
712 #define CALL_FN_v_WW(fnptr, arg1,arg2) \
714 CALL_FN_W_WW(_junk,fnptr,arg1,arg2); } while (0)
716 #define CALL_FN_v_WWW(fnptr, arg1,arg2,arg3) \
718 CALL_FN_W_WWW(_junk,fnptr,arg1,arg2,arg3); } while (0)
720 #define CALL_FN_v_WWWW(fnptr, arg1,arg2,arg3,arg4) \
722 CALL_FN_W_WWWW(_junk,fnptr,arg1,arg2,arg3,arg4); } while (0)
724 #define CALL_FN_v_5W(fnptr, arg1,arg2,arg3,arg4,arg5) \
726 CALL_FN_W_5W(_junk,fnptr,arg1,arg
[all...]
/third_party/ltp/testcases/kernel/containers/libclone/
H A Dlibclone.c20 int (*fn1) (void *arg), void *arg1, in do_clone_tests()
25 ret = ltp_clone_quick(clone_flags | SIGCHLD, fn1, arg1); in do_clone_tests()
39 int (*fn1) (void *arg), void *arg1, in do_unshare_tests()
72 ret = fn1(arg1); in do_unshare_tests()
89 int do_plain_tests(int (*fn1) (void *arg), void *arg1, in do_plain_tests() argument
100 exit(fn1(arg1)); in do_plain_tests()
107 int (*fn1) (void *arg), void *arg1) in do_clone_unshare_test()
111 return do_plain_tests(fn1, arg1, NULL, NULL); in do_clone_unshare_test()
113 return do_clone_tests(clone_flags, fn1, arg1, NULL, NULL); in do_clone_unshare_test()
115 return do_unshare_tests(clone_flags, fn1, arg1, NUL in do_clone_unshare_test()
19 do_clone_tests(unsigned long clone_flags, int (*fn1) (void *arg), void *arg1, int (*fn2) (void *arg), void *arg2) do_clone_tests() argument
38 do_unshare_tests(unsigned long clone_flags, int (*fn1) (void *arg), void *arg1, int (*fn2) (void *arg), void *arg2) do_unshare_tests() argument
106 do_clone_unshare_test(int use_clone, unsigned long clone_flags, int (*fn1) (void *arg), void *arg1) do_clone_unshare_test() argument
126 do_clone_unshare_tests(int use_clone, unsigned long clone_flags, int (*fn1) (void *arg), void *arg1, int (*fn2) (void *arg), void *arg2) do_clone_unshare_tests() argument
[all...]
/kernel/linux/linux-5.10/arch/x86/um/shared/sysdep/
H A Dstub_32.h24 static inline long stub_syscall1(long syscall, long arg1) in stub_syscall1() argument
28 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1)); in stub_syscall1()
33 static inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument
37 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall2()
43 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) in stub_syscall3() argument
47 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall3()
53 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument
58 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall4()
64 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3, in stub_syscall5() argument
69 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall5()
[all...]
/kernel/linux/linux-6.6/arch/x86/um/shared/sysdep/
H A Dstub_32.h24 static inline long stub_syscall1(long syscall, long arg1) in stub_syscall1() argument
28 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1)); in stub_syscall1()
33 static inline long stub_syscall2(long syscall, long arg1, long arg2) in stub_syscall2() argument
37 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall2()
43 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) in stub_syscall3() argument
47 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall3()
53 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, in stub_syscall4() argument
58 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall4()
64 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3, in stub_syscall5() argument
69 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1), in stub_syscall5()
[all...]
/third_party/libinput/include/valgrind/
H A Dvalgrind.h1198 #define CALL_FN_v_W(fnptr, arg1) \
1200 CALL_FN_W_W(_junk,fnptr,arg1); } while (0)
1202 #define CALL_FN_v_WW(fnptr, arg1,arg2) \
1204 CALL_FN_W_WW(_junk,fnptr,arg1,arg2); } while (0)
1206 #define CALL_FN_v_WWW(fnptr, arg1,arg2,arg3) \
1208 CALL_FN_W_WWW(_junk,fnptr,arg1,arg2,arg3); } while (0)
1210 #define CALL_FN_v_WWWW(fnptr, arg1,arg2,arg3,arg4) \
1212 CALL_FN_W_WWWW(_junk,fnptr,arg1,arg2,arg3,arg4); } while (0)
1214 #define CALL_FN_v_5W(fnptr, arg1,arg2,arg3,arg4,arg5) \
1216 CALL_FN_W_5W(_junk,fnptr,arg1,arg
[all...]
/kernel/linux/linux-5.10/arch/parisc/include/asm/
H A Dunistd.h117 #define _syscall1(type,name,type1,arg1) \
118 type name(type1 arg1) \
120 return K_INLINE_SYSCALL(name, 1, arg1); \
123 #define _syscall2(type,name,type1,arg1,type2,arg2) \
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) \
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,type
[all...]
/kernel/linux/linux-6.6/arch/parisc/include/asm/
H A Dunistd.h113 #define _syscall1(type,name,type1,arg1) \
114 type name(type1 arg1) \
116 return K_INLINE_SYSCALL(name, 1, arg1); \
119 #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,type
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/backend/
H A Dfunction-ptr-xtype.c11 int foo(void *fn, int arg1, int arg2);
12 int foo(void *fn, int arg1, int arg2) in foo() argument
16 res += ((binop_t)fn)(arg1, arg2); in foo()
17 res += ((unop_t)fn)(arg1); in foo()
24 int bar(int (*fn)(int), int arg1, int arg2);
25 int bar(int (*fn)(int), int arg1, int arg2) in bar() argument
29 res += ((binop_t)fn)(arg1, arg2); in bar()
30 res += fn(arg1); in bar()
/kernel/linux/linux-6.6/tools/include/nolibc/
H A Darch-arm.h70 #define my_syscall1(num, arg1) \
73 register long _arg1 __asm__ ("r0") = (long)(arg1); \
87 #define my_syscall2(num, arg1, arg2) \
90 register long _arg1 __asm__ ("r0") = (long)(arg1); \
105 #define my_syscall3(num, arg1, arg2, arg3) \
108 register long _arg1 __asm__ ("r0") = (long)(arg1); \
124 #define my_syscall4(num, arg1, arg2, arg3, arg4) \
127 register long _arg1 __asm__ ("r0") = (long)(arg1); \
144 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \
147 register long _arg1 __asm__ ("r0") = (long)(arg1); \
[all...]

Completed in 14 milliseconds

12345678910>>...41