Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 408 for 0_80 (0.85 sec)

  1. src/internal/runtime/syscall/asm_linux_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	MOVD	num+0(FP), R8	// syscall entry
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	MOVD	a4+32(FP), R3
    	MOVD	a5+40(FP), R4
    	MOVD	a6+48(FP), R5
    	SVC
    	CMN	$4095, R0
    	BCC	ok
    	MOVD	$-1, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 645 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/toolchain-management/kotlin/settings.gradle.kts

    plugins {
        id("org.gradle.toolchains.foojay-resolver") version("0.8.0")
    }
    
    import org.gradle.api.Plugin
    import org.gradle.api.initialization.Settings
    import org.gradle.jvm.toolchain.JavaToolchainResolver
    import org.gradle.jvm.toolchain.JavaToolchainResolverRegistry
    import java.net.URI
    import java.util.Optional
    import javax.inject.Inject
    
    apply<MadeUpPlugin>()
    
    // tag::toolchain-management[]
    toolchainManagement {
        jvm { // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv13-IssueTicket

    00000380  c0 a8 a0 08 ac d3 4e 39  ca 21 b0 e6 1d ea 97 58  |......N9.!.....X|
    00000390  6a e0 ac ad 10 19 75 13  7e 35 5d c6 2c ad a1 a2  |j.....u.~5].,...|
    000003a0  79 ac 33 ed 4d 77 41 29  6c e2 05 80 d7 7b 05 a4  |y.3.MwA)l....{..|
    000003b0  03 17 03 03 00 35 4b 22  e9 78 9e b1 75 a9 cd 91  |.....5K".x..u...|
    000003c0  c6 4d f1 e9 f2 a7 42 59  d5 c0 9e f3 9e 8f 7a 17  |.M....BY......z.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/math/big/intconv_test.go

    	{"0b10", "2", 0, 2, true},
    	{"0o10", "8", 0, 8, true},
    	{"0x10", "16", 0, 16, true},
    	{in: "0x10", base: 16},
    	{"-0x10", "-16", 0, -16, true},
    	{"+0x10", "16", 0, 16, true},
    	{"00", "0", 0, 0, true},
    	{"0", "0", 8, 0, true},
    	{"07", "7", 0, 7, true},
    	{"7", "7", 8, 7, true},
    	{"023", "19", 0, 19, true},
    	{"23", "23", 8, 19, true},
    	{"cafebabe", "cafebabe", 16, 0xcafebabe, true},
    	{"0b0", "0", 0, 0, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 22:58:58 UTC 2019
    - 10K bytes
    - Viewed (0)
  5. src/internal/runtime/syscall/asm_linux_mips64x.s

    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    #include "textflag.h"
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	MOVV	num+0(FP), R2	// syscall entry
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	a4+32(FP), R7
    	MOVV	a5+40(FP), R8
    	MOVV	a6+48(FP), R9
    	MOVV	R0, R3	// reset R3 to 0 as 1-ret SYSCALL keeps it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 724 bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    		want      bool
    		wantUnmap Addr
    	}{
    		{Addr{}, false, Addr{}},
    		{mustIP("::ffff:c000:0280"), true, mustIP("192.0.2.128")},
    		{mustIP("::ffff:192.0.2.128"), true, mustIP("192.0.2.128")},
    		{mustIP("::ffff:192.0.2.128%eth0"), true, mustIP("192.0.2.128")},
    		{mustIP("::fffe:c000:0280"), false, mustIP("::fffe:c000:0280")},
    		{mustIP("::ffff:127.1.2.3"), true, mustIP("127.1.2.3")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. src/syscall/asm_freebsd_arm64.s

    	MOVD	R0, err+48(FP)
    	RET
    ok:
    	MOVD	R0, r1+32(FP)
    	MOVD	R1, r2+40(FP)
    	MOVD	ZR, err+48(FP)
    	RET
    
    // func Syscall6(trap uintptr, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	BL	runtime·entersyscall<ABIInternal>(SB)
    	MOVD	trap+0(FP), R8	// syscall entry
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	MOVD	a4+32(FP), R3
    	MOVD	a5+40(FP), R4
    	MOVD	a6+48(FP), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. src/syscall/asm_openbsd_mips64.s

    	JAL	runtime·exitsyscall(SB)
    	RET
    ok:
    	MOVV	R2, r1+32(FP)	// r1
    	MOVV	R3, r2+40(FP)	// r2
    	MOVV	R0, err+48(FP)	// errno
    	JAL	runtime·exitsyscall(SB)
    	RET
    
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	JAL	runtime·entersyscall(SB)
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    	MOVV	a4+32(FP), R7
    	MOVV	a5+40(FP), R8
    	MOVV	a6+48(FP), R9
    	MOVV	trap+0(FP), R2	// syscall entry
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/go2numbers.golden

    	_ = .0123e123
    
    	_ = 0.0
    	_ = 123.123
    	_ = 0123.0123
    
    	_ = 0.0e1
    	_ = 123.123e-10
    	_ = 0123.0123e+456
    
    	_ = 1_2_3.
    	_ = 0_123.
    
    	_ = 0_0e0
    	_ = 1_2_3e0
    	_ = 0_123e0
    
    	_ = 0e-0_0
    	_ = 1_2_3e+0
    	_ = 0123e1_2_3
    
    	_ = 0.e+1
    	_ = 123.e-1_0
    	_ = 01_23.e123
    
    	_ = .0e-1
    	_ = .123e+10
    	_ = .0123e123
    
    	_ = 1_2_3.123
    	_ = 0123.01_23
    
    	// hexadecimal floats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  10. src/runtime/defs_linux_s390x.go

    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART = 0x10000000
    	_SA_ONSTACK = 0x8000000
    	_SA_SIGINFO = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top