/kernel/linux/linux-5.10/tools/include/nolibc/ |
H A D | nolibc.h | 346 #define my_syscall3(num, arg1, arg2, arg3) \ 352 register long _arg3 asm("rdx") = (long)(arg3); \ 364 #define my_syscall4(num, arg1, arg2, arg3, arg4) \ 370 register long _arg3 asm("rdx") = (long)(arg3); \ 383 #define my_syscall5(num, arg1, arg2, arg3, arg4, arg5) \ 389 register long _arg3 asm("rdx") = (long)(arg3); \ 403 #define my_syscall6(num, arg1, arg2, arg3, arg4, arg5, arg6) \ 409 register long _arg3 asm("rdx") = (long)(arg3); \ 551 #define my_syscall3(num, arg1, arg2, arg3) \ 557 register long _arg3 asm("edx") = (long)(arg3); \ [all...] |
/kernel/linux/linux-5.10/arch/parisc/include/asm/ |
H A D | unistd.h | 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,type2,arg2,type3,arg3,type4,arg4) \ 136 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) \ 138 return K_INLINE_SYSCALL(name, 4, arg1, arg2, arg3, arg4); \ 142 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ 143 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) \ 145 return K_INLINE_SYSCALL(name, 5, arg1, arg2, arg3, arg4, arg5); \
|
/kernel/linux/linux-6.6/arch/parisc/include/asm/ |
H A D | unistd.h | 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,type3,arg3,type4,arg4,type5,arg5) \ 139 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) \ 141 return K_INLINE_SYSCALL(name, 5, arg1, arg2, arg3, arg4, arg5); \
|
/third_party/typescript/tests/baselines/reference/ |
H A D | declarationsForIndirectTypeAliasReference.js | 33 arg3 = MAP2) { 49 function doSome(arg1, arg2, arg3) {
51 if (arg3 === void 0) { arg3 = MAP2; }
67 declare function doSome(arg1: string, arg2?: StringHash, arg3?: StringHash2): void;
|
H A D | callsOnComplexSignatures.js | 45 arg3: ((a: {x: number}, ...objs: {y: number}[]) => number) | ((...objs: {x: number}[]) => number), 56 arg3({x: 0}); 57 arg3({x: 0}, {x: 0, y: 0}); 58 arg3({x: 0}, {x: 0, y: 0}, {x: 0, y: 0}); 133 function test4(arg1, arg2, arg3, arg4, arg5, arg6) {
138 arg3({ x: 0 });
139 arg3({ x: 0 }, { x: 0, y: 0 });
140 arg3({ x: 0 }, { x: 0, y: 0 }, { x: 0, y: 0 });
|
H A D | genericCallWithConstructorTypedArguments5.js | 13 var arg3: { cb: new (x: string, y: number) => string }; 14 var r3 = foo(arg3); // error 38 var arg3;
variable 39 var r3 = foo(arg3); // error
|
/kernel/linux/linux-6.6/arch/x86/um/shared/sysdep/ |
H A D | stub_64.h | 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
H A D | test_calling_conv.cpp | 32 v4si32 arg3 = {8, 9, 10, 11}; in caller_vvvvv() local 36 CALL_AS_TYPE(callee_vvvvv_Ty, Callee)(arg1, arg2, arg3, arg4, arg5); in caller_vvvvv() 42 v4f32 arg3 = {6, 7, 8, 9}; in caller_vlvilvfvdviv() local 54 (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12); in caller_vlvilvfvdviv() 67 callee_vvvvv(v4si32 arg1, v4si32 arg2, v4si32 arg3, v4si32 arg4, v4si32 arg5) { in callee_vvvvv() argument 78 callee_vlvilvfvdviv(v4f32 arg1, int64 arg2, v4f32 arg3, int arg4, int64 arg5, in callee_vlvilvfvdviv() argument
|
/kernel/linux/linux-5.10/arch/sparc/include/asm/ |
H A D | smp_32.h | 61 unsigned long arg2, unsigned long arg3, 84 unsigned long arg3) in xc3() 87 arg1, arg2, arg3, 0); in xc3() 91 unsigned long arg3, unsigned long arg4) in xc4() 94 arg1, arg2, arg3, arg4); in xc4() 83 xc3(smpfunc_t func, unsigned long arg1, unsigned long arg2, unsigned long arg3) xc3() argument 90 xc4(smpfunc_t func, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4) xc4() argument
|
/kernel/linux/linux-6.6/arch/sparc/include/asm/ |
H A D | smp_32.h | 58 unsigned long arg2, unsigned long arg3, 81 unsigned long arg3) in xc3() 84 arg1, arg2, arg3, 0); in xc3() 88 unsigned long arg3, unsigned long arg4) in xc4() 91 arg1, arg2, arg3, arg4); in xc4() 80 xc3(void *func, unsigned long arg1, unsigned long arg2, unsigned long arg3) xc3() argument 87 xc4(void *func, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4) xc4() argument
|
/kernel/linux/linux-5.10/arch/loongarch/include/asm/ |
H A D | kvm_para.h | 112 unsigned long arg3) in kvm_hypercall4() 119 register unsigned long a4 asm("a4") = arg3; in kvm_hypercall4() 133 unsigned long arg3, unsigned long arg4) in kvm_hypercall5() 140 register unsigned long a4 asm("a4") = arg3; in kvm_hypercall5() 155 unsigned long arg3, unsigned long arg4, unsigned long arg5) in kvm_hypercall6() 162 register unsigned long a4 asm("a4") = arg3; in kvm_hypercall6() 110 kvm_hypercall4(u64 fid, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3) kvm_hypercall4() argument 131 kvm_hypercall5(u64 fid, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4) kvm_hypercall5() argument 153 kvm_hypercall6(u64 fid, unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5) kvm_hypercall6() argument
|
/kernel/liteos_a/testsuites/kernel/sample/kernel_base/core/task/full/ |
H A D | It_los_task_016.c | 40 static void TaskF04(UINTPTR arg1, UINTPTR arg2, UINTPTR arg3, UINTPTR arg4) in TaskF04() argument 44 ICUNIT_ASSERT_EQUAL_VOID(arg3, -1, arg3); in TaskF04() 51 static void TaskF03(UINTPTR arg1, UINTPTR arg2, UINTPTR arg3) in TaskF03() argument 55 ICUNIT_ASSERT_EQUAL_VOID(arg3, -1, arg3); in TaskF03()
|
/kernel/linux/linux-5.10/arch/s390/include/asm/ |
H A D | stacktrace.h | 83 #define CALL_ARGS_3(arg1, arg2, arg3) \ 85 register unsigned long r4 asm("4") = (unsigned long)(arg3) 86 #define CALL_ARGS_4(arg1, arg2, arg3, arg4) \ 87 CALL_ARGS_3(arg1, arg2, arg3); \ 89 #define CALL_ARGS_5(arg1, arg2, arg3, arg4, arg5) \ 90 CALL_ARGS_4(arg1, arg2, arg3, arg4); \ 140 long arg3 = (long)(t3)(a3) 157 register long r4 asm("4") = arg3
|
/kernel/uniproton/src/om/include/ |
H A D | prt_hook_external.h | 87 #define OS_MHOOK_ACTIVATE_PARA4(hookType, arg0, arg1, arg2, arg3) \ 89 OsFunPara4, pfn((uintptr_t)(arg0), (uintptr_t)(arg1), (uintptr_t)(arg2), (uintptr_t)(arg3))) 90 #define OS_MHOOK_ACTIVATE_PARA5(hookType, arg0, arg1, arg2, arg3, arg4) \ 92 pfn((uintptr_t)(arg0), (uintptr_t)(arg1), (uintptr_t)(arg2), (uintptr_t)(arg3), (uintptr_t)(arg4))) 100 #define OS_SHOOK_ACTIVATE_PARA4(hookType, arg0, arg1, arg2, arg3) \ 102 pfn((uintptr_t)(arg0), (uintptr_t)(arg1), (uintptr_t)(arg2), (uintptr_t)(arg3))) 103 #define OS_SHOOK_ACTIVATE_PARA5(hookType, arg0, arg1, arg2, arg3, arg4) \ 105 pfn((uintptr_t)(arg0), (uintptr_t)(arg1), (uintptr_t)(arg2), (uintptr_t)(arg3), (uintptr_t)(arg4)))
|
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | libwebp_java_wrap.c | 870 (result ? (jint)ReturnedBufferSize(__FUNCTION__, arg3, arg4) : 0) 1027 int *arg3 = (int *) 0 ; in Java_com_google_webp_libwebpJNI_WebPGetInfo() local 1047 arg3 = &temp3; in Java_com_google_webp_libwebpJNI_WebPGetInfo() 1060 result = (int)WebPGetInfo((uint8_t const *)arg1,arg2,arg3,arg4); in Java_com_google_webp_libwebpJNI_WebPGetInfo() 1082 int *arg3 = (int *) 0 ; in Java_com_google_webp_libwebpJNI_WebPDecodeRGB() local 1102 arg3 = &temp3; in Java_com_google_webp_libwebpJNI_WebPDecodeRGB() 1115 result = (uint8_t *)WebPDecodeRGB((uint8_t const *)arg1,arg2,arg3,arg4); in Java_com_google_webp_libwebpJNI_WebPDecodeRGB() 1138 int *arg3 = (int *) 0 ; in Java_com_google_webp_libwebpJNI_WebPDecodeRGBA() local 1158 arg3 = &temp3; in Java_com_google_webp_libwebpJNI_WebPDecodeRGBA() 1171 result = (uint8_t *)WebPDecodeRGBA((uint8_t const *)arg1,arg2,arg3,arg in Java_com_google_webp_libwebpJNI_WebPDecodeRGBA() 1194 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_WebPDecodeARGB() local 1250 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_WebPDecodeBGR() local 1306 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_WebPDecodeBGRA() local 1374 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_wrap_1WebPEncodeRGB() local 1424 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_wrap_1WebPEncodeBGR() local 1474 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_wrap_1WebPEncodeRGBA() local 1524 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_wrap_1WebPEncodeBGRA() local 1574 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_wrap_1WebPEncodeLosslessRGB() local 1622 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_wrap_1WebPEncodeLosslessBGR() local 1670 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_wrap_1WebPEncodeLosslessRGBA() local 1718 int *arg3 = (int *) 0 ; Java_com_google_webp_libwebpJNI_wrap_1WebPEncodeLosslessBGRA() local [all...] |
H A D | libwebp_go_wrap.c | 225 int *arg3 = (int *) 0 ; in _wrap_wrapped_WebPGetInfo() local 233 _goslice_ arg3; in _wrap_wrapped_WebPGetInfo() member 244 if (swig_a->arg3.len == 0) { in _wrap_wrapped_WebPGetInfo() 247 arg3 = &temp3; in _wrap_wrapped_WebPGetInfo() 256 result = (int)WebPGetInfo((uint8_t const *)arg1,arg2,arg3,arg4); in _wrap_wrapped_WebPGetInfo() 259 int* a = (int *) swig_a->arg3.array; in _wrap_wrapped_WebPGetInfo()
|
/kernel/linux/linux-5.10/arch/arm/mach-bcm/ |
H A D | bcm_kona_smc.c | 32 unsigned arg3; member 153 writel(data->arg3, args); in __bcm_kona_smc() 163 unsigned arg2, unsigned arg3) in bcm_kona_smc() 171 data.arg3 = arg3; in bcm_kona_smc() 162 bcm_kona_smc(unsigned service_id, unsigned arg0, unsigned arg1, unsigned arg2, unsigned arg3) bcm_kona_smc() argument
|
/kernel/linux/linux-6.6/arch/arm/mach-bcm/ |
H A D | bcm_kona_smc.c | 20 unsigned arg3; member 130 writel(data->arg3, args); in __bcm_kona_smc() 140 unsigned arg2, unsigned arg3) in bcm_kona_smc() 148 data.arg3 = arg3; in bcm_kona_smc() 139 bcm_kona_smc(unsigned service_id, unsigned arg0, unsigned arg1, unsigned arg2, unsigned arg3) bcm_kona_smc() argument
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | bpf_syscall_macro.c | 12 unsigned long arg3 = 0; variable 51 bpf_probe_read_kernel(&arg3, sizeof(arg3), &PT_REGS_PARM3_SYSCALL(real_regs)); in BPF_KPROBE() 69 unsigned long arg3, unsigned long arg4, unsigned long arg5) in BPF_KSYSCALL() 78 arg3_syscall = arg3; in BPF_KSYSCALL() 68 BPF_KSYSCALL(prctl_enter, int option, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5) BPF_KSYSCALL() argument
|
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | paravirt_types.h | 596 #define PVOP_CALL3(rettype, op, arg1, arg2, arg3) \ 598 PVOP_CALL_ARG2(arg2), PVOP_CALL_ARG3(arg3)) 599 #define PVOP_VCALL3(op, arg1, arg2, arg3) \ 601 PVOP_CALL_ARG2(arg2), PVOP_CALL_ARG3(arg3)) 605 #define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \ 609 PVOP_CALL_ARG3(arg3), [_arg4] "mr" ((u32)(arg4))) 610 #define PVOP_VCALL4(op, arg1, arg2, arg3, arg4) \ 614 "2" ((u32)(arg3)), [_arg4] "mr" ((u32)(arg4))) 616 #define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \ 619 PVOP_CALL_ARG3(arg3), PVOP_CALL_ARG [all...] |
/kernel/linux/linux-5.10/security/keys/ |
H A D | keyctl.c | 1874 SYSCALL_DEFINE5(keyctl, int, option, unsigned long, arg2, unsigned long, arg3, in SYSCALL_DEFINE5() 1880 (int) arg3); in SYSCALL_DEFINE5() 1887 (const void __user *) arg3, in SYSCALL_DEFINE5() 1895 (char __user *) arg3, in SYSCALL_DEFINE5() 1903 (key_serial_t) arg3); in SYSCALL_DEFINE5() 1907 (key_serial_t) arg3); in SYSCALL_DEFINE5() 1911 (const char __user *) arg3, in SYSCALL_DEFINE5() 1917 (char __user *) arg3, in SYSCALL_DEFINE5() 1922 (uid_t) arg3, in SYSCALL_DEFINE5() 1927 (key_perm_t) arg3); in SYSCALL_DEFINE5() [all...] |
/kernel/linux/linux-6.6/security/keys/ |
H A D | keyctl.c | 1874 SYSCALL_DEFINE5(keyctl, int, option, unsigned long, arg2, unsigned long, arg3, in SYSCALL_DEFINE5() 1880 (int) arg3); in SYSCALL_DEFINE5() 1887 (const void __user *) arg3, in SYSCALL_DEFINE5() 1895 (char __user *) arg3, in SYSCALL_DEFINE5() 1903 (key_serial_t) arg3); in SYSCALL_DEFINE5() 1907 (key_serial_t) arg3); in SYSCALL_DEFINE5() 1911 (const char __user *) arg3, in SYSCALL_DEFINE5() 1917 (char __user *) arg3, in SYSCALL_DEFINE5() 1922 (uid_t) arg3, in SYSCALL_DEFINE5() 1927 (key_perm_t) arg3); in SYSCALL_DEFINE5() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | atifragshader.c | 134 GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, in debug_op() 154 fprintf(stderr, ", %s, %s, %d", _mesa_enum_to_string(arg3), in debug_op() 596 GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, in _mesa_FragmentOpXATI() 682 if (arg3) { in _mesa_FragmentOpXATI() 683 if (!check_arith_arg(optype, arg3, arg3Rep)) { in _mesa_FragmentOpXATI() 688 (arg3 >= GL_CON_0_ATI) && (arg3 <= GL_CON_7_ATI) && in _mesa_FragmentOpXATI() 689 (arg1 != arg2) && (arg1 != arg3) && (arg2 != arg3)) { in _mesa_FragmentOpXATI() 700 if (arg3) in _mesa_FragmentOpXATI() 131 debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) debug_op() argument 593 _mesa_FragmentOpXATI(GLint optype, GLuint arg_count, GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) _mesa_FragmentOpXATI() argument 771 _mesa_ColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) _mesa_ColorFragmentOp3ATI() argument 801 _mesa_AlphaFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) _mesa_AlphaFragmentOp3ATI() argument [all...] |
/kernel/linux/linux-5.10/include/linux/firmware/meson/ |
H A D | meson_sm.h | 22 u32 *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);
|
/kernel/linux/linux-6.6/include/linux/firmware/meson/ |
H A D | meson_sm.h | 22 u32 *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);
|