| /freebsd/crypto/openssl/include/openssl/ |
| H A D | trace.h | 302 #define OSSL_TRACE6(category, format, arg1, arg2, arg3, arg4, arg5, arg6) \ argument 303 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6)) 304 #define OSSL_TRACE7(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7) \ argument 305 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7)) 306 #define OSSL_TRACE8(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ argument 307 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)) 308 #define OSSL_TRACE9(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \ argument 309 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9))
|
| /freebsd/contrib/llvm-project/libc/src/__support/OSUtil/linux/i386/ |
| H A D | syscall.h | 69 long arg4, long arg5, long arg6) { in syscall_impl() argument 81 "D"(arg5), [arg6] "m"(arg6) in syscall_impl()
|
| /freebsd/tools/test/stress2/misc/ |
| H A D | fifo2.sh | 135 unsigned long arg1, arg2, arg3, arg4, arg5, arg6, arg7; 144 arg6 = makearg(); 149 i, SYS_open, arg1, arg2, arg3, arg4, arg5, arg6, arg7); 152 syscall(SYS_open, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
|
| H A D | kevent7.sh | 197 unsigned long arg1, arg2, arg3, arg4, arg5, arg6, arg7; 211 arg6 = makearg(); 217 i, num, arg1, arg2, arg3, arg4, arg5, arg6, arg7); 220 syscall(num, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
|
| H A D | syscall4.sh | 264 unsigned long arg1, arg2, arg3, arg4, arg5, arg6, arg7; 285 arg6 = makearg(); 291 i, num, arg1, arg2, arg3, arg4, arg5, arg6, arg7); 295 syscall(num, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/ |
| H A D | tst.args1.d | 58 arg5 == 5 && arg6 == 6 && arg7 == 7 && arg8 == 8 && arg9 == 9/ 66 arg3, arg4, arg5, arg6, arg7, arg8, arg9);
|
| H A D | tst.args1.c | 36 long arg6 __unused, long arg7 __unused, long arg8 __unused, in go()
|
| /freebsd/contrib/llvm-project/libc/include/llvm-libc-macros/linux/ |
| H A D | unistd-macros.h | 52 #define __syscall_helper(sysno, arg1, arg2, arg3, arg4, arg5, arg6, ...) \ argument 54 (long)(arg4), (long)(arg5), (long)(arg6))
|
| /freebsd/contrib/llvm-project/libc/src/__support/OSUtil/linux/riscv/ |
| H A D | syscall.h | 33 register long a5 __asm__("a5") = arg6; 87 long arg4, long arg5, long arg6) { in syscall_impl() argument
|
| /freebsd/contrib/llvm-project/libc/src/__support/OSUtil/darwin/aarch64/ |
| H A D | syscall.h | 35 register long x5 __asm__("x5") = arg6; 89 long arg4, long arg5, long arg6) { in syscall_impl() argument
|
| /freebsd/contrib/llvm-project/libc/src/__support/OSUtil/linux/aarch64/ |
| H A D | syscall.h | 33 register long x5 __asm__("x5") = arg6; 87 long arg4, long arg5, long arg6) { in syscall_impl() argument
|
| /freebsd/contrib/llvm-project/libc/src/__support/OSUtil/linux/arm/ |
| H A D | syscall.h | 54 register long r5 __asm__("r5") = arg6; 105 long arg4, long arg5, long arg6) { in syscall_impl() argument
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_syscall_linux_loongarch64.inc | 114 long arg5, long arg6) { 121 register u64 a5 asm("$a5") = arg6; 133 long arg5, long arg6, long arg7) { 140 register u64 a5 asm("$a5") = arg6;
|
| H A D | sanitizer_syscall_linux_riscv64.inc | 117 long arg5, long arg6) { 124 register u64 a5 asm("a5") = arg6; 136 long arg5, long arg6, long arg7) { 143 register u64 a5 asm("a5") = arg6;
|
| H A D | sanitizer_syscall_linux_x86_64.inc | 71 T5 arg5, T6 arg6) { 78 "r"((u64)arg6) : "rcx", "r11", "r10", "r8", "r9",
|
| H A D | sanitizer_syscall_linux_aarch64.inc | 101 u64 arg4, long arg5, long arg6) { 108 register u64 x5 asm("x5") = arg6;
|
| H A D | sanitizer_syscall_linux_arm.inc | 101 u32 arg4, long arg5, long arg6) { 108 register u32 r5 asm("r5") = arg6;
|
| /freebsd/lib/libc/tests/gen/ |
| H A D | makecontext_test.c | 149 check_6(int arg1, int arg2, int arg3, int arg4, int arg5, int arg6) in check_6() argument 157 ATF_REQUIRE_EQ(arg6, 6); in check_6()
|
| /freebsd/sys/riscv/include/ |
| H A D | sbi.h | 146 sbi_call(uint64_t arg7, uint64_t arg6, uint64_t arg0, uint64_t arg1, in sbi_call() argument 156 register uintptr_t a6 __asm ("a6") = (uintptr_t)(arg6); in sbi_call()
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/ |
| H A D | tst.arg1to8.d | 41 arg3, arg4, arg5, arg6, arg7, arg8);
|
| H A D | tst.arg1to8clause.d | 45 arg3, arg4, arg5, arg6, arg7, arg8);
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/ |
| H A D | tst.basic.d | 47 arg3, arg4, arg5, arg6, arg7, arg8);
|
| /freebsd/sys/kern/ |
| H A D | kern_ktr.c | 323 u_long arg6) in ktr_tracepoint() argument 389 printf(format, arg1, arg2, arg3, arg4, arg5, arg6); in ktr_tracepoint() 398 entry->ktr_parms[5] = arg6; in ktr_tracepoint()
|
| /freebsd/sys/powerpc/include/ |
| H A D | ifunc.h | 54 register_t arg6 __unused, \
|
| /freebsd/crypto/openssl/crypto/aes/asm/ |
| H A D | bsaes-x86_64.pl | 1166 my ($arg1,$arg2,$arg3,$arg4,$arg5,$arg6)=$win64 ? ("%rcx","%rdx","%r8","%r9","%r10","%r11d") 1622 mov 48(%rsp),$arg6 # pull direction flag 1625 cmp \$0,$arg6 2177 $arg6=~s/d$//; 2205 mov 0xa8(%rsp),$arg6 # pull ivp 2227 lea ($arg6), $arg1 2605 mov 0xa8(%rsp),$arg6 # pull ivp 2626 lea ($arg6), $arg1
|