Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for a7 (0.1 sec)

  1. src/runtime/sys_linux_riscv64.s

    	MOV	$SYS_gettid, A7
    	ECALL
    	MOVW	A0, ret+0(FP)
    	RET
    
    // func raise(sig uint32)
    TEXT runtime·raise(SB),NOSPLIT|NOFRAME,$0
    	MOV	$SYS_gettid, A7
    	ECALL
    	// arg 1 tid - already in A0
    	MOVW	sig+0(FP), A1	// arg 2
    	MOV	$SYS_tkill, A7
    	ECALL
    	RET
    
    // func raiseproc(sig uint32)
    TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	MOV	$SYS_getpid, A7
    	ECALL
    	// arg 1 pid - already in A0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. test/initexp.go

    func b5() int { return a1() + a2() + a3() + a4() + a5() + a6() + a7() }
    func b6() int { return a1() + a2() + a3() + a4() + a5() + a6() + a7() }
    func b7() int { return a1() + a2() + a3() + a4() + a5() + a6() + a7() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/gccgo_c.c

      __asm__(GOSYM_PREFIX GOPKGPATH ".realSyscall");
    
    struct ret
    gccgoRealSyscall(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)
    {
    	struct ret r;
    
    	errno = 0;
    	r.r = syscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9);
    	r.err = errno;
    	return r;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/syscall/syscall_openbsd_libc.go

    func rawSyscall10X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2 uintptr, err Errno)
    
    func syscall9(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno) {
    	return syscall10(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, 0)
    }
    func syscall9X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno) {
    	return syscall10X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go

    //go:linkname syscall_rawSyscall syscall.rawSyscall
    //go:linkname syscall_rawSyscall6 syscall.rawSyscall6
    
    func syscall_syscall9(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno) {
    	return syscall_syscall10(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv13-CHACHA20-SHA256

    00000170  99 a4 ef 7d 03 ce 71 95  d7 1d e1 b3 b8 e2 20 99  |...}..q....... .|
    00000180  aa 30 0f c1 75 a7 0d 39  98 12 96 27 c6 39 b8 57  |.0..u..9...'.9.W|
    00000190  6e ab 79 c7 91 c2 56 9d  b3 e1 cb 17 6a cc 42 47  |n.y...V.....j.BG|
    000001a0  fc a4 52 10 ab cd 4b 1f  65 3e 35 61 ed 38 99 7b  |..R...K.e>5a.8.{|
    000001b0  a7 79 02 f2 16 cb 85 fb  85 f8 86 56 40 6b ee 2f  |.y.........V@k./|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. test/initialize.go

    var a15 = f15([]rune("hello"))
    var a16 = f15([]rune{1, 2, 3})
    
    type Same struct {
    	a, b interface{}
    }
    
    var same = []Same{
    	{a1, b1},
    	{a2, b2},
    	{a3, b3},
    	{a4, b4},
    	{a5, b5},
    	{a6, b6},
    	{a7[0] == a7[1], true},
    	{m8(a8) == "ghi", true},
    	{m8(a9) == "ghi", true},
    	{a10[0] == a10[1], true},
    	{a11[0] == a11[1], true},
    	{&a12[0][0] == &a12[1][0], true},
    	{&a13[0][0] == &a13[1][0], true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 04:04:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/gccgo.go

    // We can't use the gc-syntax .s files for gccgo. On the plus side
    // much of the functionality can be written directly in Go.
    
    func realSyscallNoError(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r uintptr)
    
    func realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r, errno uintptr)
    
    func SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) {
    	syscall.Entersyscall()
    	r := realSyscallNoError(trap, a1, a2, a3, 0, 0, 0, 0, 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-X25519-ECDHE

    00000030  6b 7d 19 63 03 2a b6 e5  97 37 26 79 98 3f 85 52  |k}.c.*...7&y.?.R|
    00000040  17 03 03 00 17 c9 80 91  3e 92 1e a7 9b 00 a3 01  |........>.......|
    00000050  19 31 d0 6f 2e 69 0c 15  03 73 20 36 17 03 03 00  |.1.o.i...s 6....|
    00000060  13 97 85 32 6f a2 9c 72  be ca 43 db 18 a7 98 b7  |...2o..r..C.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv13-IssueTicket

    00000250  07 33 86 3a 6a 54 ef 69  27 02 bf 76 7c 05 ab 40  |.3.:jT.i'..v|..@|
    00000260  e6 43 9e 3c 9b ee 0c d8  14 ff c1 09 a6 73 65 66  |.C.<.........sef|
    00000270  54 1f a9 9c af fb 73 c4  cb 8c a7 3b c7 23 d6 99  |T.....s....;.#..|
    00000280  a7 c6 af a1 62 54 30 f7  18 30 23 7d c0 e6 d3 fe  |....bT0..0#}....|
    00000290  a0 58 f1 c5 5e 37 70 90  47 73 45 b0 70 a9 45 1c  |.X..^7p.GsE.p.E.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top