Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for s9 (0.23 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/asan_linkerx/main.go

    }
    
    func main() {
    	all := []*string{
    		&S1, &S2, &S3, &S4, &S5, &S6, &S7, &S8, &S9, &S10,
    		&p.S1, &p.S2, &p.S3, &p.S4, &p.S5, &p.S6, &p.S7, &p.S8, &p.S9, &p.S10,
    	}
    	for _, ps := range all {
    		pstring(ps)
    	}
    }
    
    var S1 string
    var S2 string
    var S3 string
    var S4 string
    var S5 string
    var S6 string
    var S7 string
    var S8 string
    var S9 string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 471 bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/decls3.go

    }
    
    // The X in S6 and S7 annihilate, but they also block the X in S8.S9.
    type S5 struct {
    	S6
    	S7
    	S8
    }
    
    type S6 struct {
    	X int
    }
    
    type S7 S6
    
    type S8 struct {
    	S9
    }
    
    type S9 struct {
    	X int
    	Y int
    }
    
    // The X in S11.S6 and S12.S6 annihilate, but they also block the X in S13.S8.S9.
    type S10 struct {
    	S11
    	S12
    	S13
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/testdata/asan_linkerx/p/p.go

    package p
    
    var S1 string
    var S2 string
    var S3 string
    var S4 string
    var S5 string
    var S6 string
    var S7 string
    var S8 string
    var S9 string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 152 bytes
    - Viewed (0)
  4. src/runtime/signal_riscv64.go

    	print("s3  ", hex(c.s3()), "\t")
    	print("s4  ", hex(c.s4()), "\n")
    	print("s5  ", hex(c.s5()), "\t")
    	print("s6  ", hex(c.s6()), "\n")
    	print("s7  ", hex(c.s7()), "\t")
    	print("s8  ", hex(c.s8()), "\n")
    	print("s9  ", hex(c.s9()), "\t")
    	print("s10 ", hex(c.s10()), "\n")
    	print("s11 ", hex(c.s11()), "\t")
    	print("t3  ", hex(c.t3()), "\n")
    	print("t4  ", hex(c.t4()), "\t")
    	print("t5  ", hex(c.t5()), "\n")
    	print("t6  ", hex(c.t6()), "\t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. test/live.go

    // concatstring slice should die on return
    
    var s1, s2, s3, s4, s5, s6, s7, s8, s9, s10 string
    
    func f28(b bool) {
    	if b {
    		printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10) // ERROR "stack object .autotmp_[0-9]+ \[10\]string$"
    	}
    	printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10)
    	printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10)
    }
    
    // map iterator should die on end of range loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. src/runtime/signal_openbsd_riscv64.go

    func (c *sigctxt) s6() uint64  { return uint64(c.regs().sc_s[6]) }
    func (c *sigctxt) s7() uint64  { return uint64(c.regs().sc_s[7]) }
    func (c *sigctxt) s8() uint64  { return uint64(c.regs().sc_s[8]) }
    func (c *sigctxt) s9() uint64  { return uint64(c.regs().sc_s[9]) }
    func (c *sigctxt) s10() uint64 { return uint64(c.regs().sc_s[10]) }
    func (c *sigctxt) s11() uint64 { return uint64(c.regs().sc_s[11]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_arm64_hwcap.go

    	ARM64.HasSHA2 = isSet(HWCap, hwcap_SHA2)
    	ARM64.HasCRC32 = isSet(HWCap, hwcap_CRC32)
    	ARM64.HasCPUID = isSet(HWCap, hwcap_CPUID)
    	ARM64.HasSHA512 = isSet(HWCap, hwcap_SHA512)
    
    	// The Samsung S9+ kernel reports support for atomics, but not all cores
    	// actually support them, resulting in SIGILL. See issue #28431.
    	// TODO(elias.naur): Only disable the optimization on bad chipsets on android.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/encoding/json/decode_test.go

    // The X in S6 and S7 annihilate, but they also block the X in S8.S9.
    type S5 struct {
    	S6
    	S7
    	S8
    }
    
    type S6 struct {
    	X int
    }
    
    type S7 S6
    
    type S8 struct {
    	S9
    }
    
    type S9 struct {
    	X int
    	Y int
    }
    
    // From reflect test:
    // The X in S11.S6 and S12.S6 annihilate, but they also block the X in S13.S8.S9.
    type S10 struct {
    	S11
    	S12
    	S13
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/runtime/defs_linux_riscv64.go

    	a1  uint64
    	a2  uint64
    	a3  uint64
    	a4  uint64
    	a5  uint64
    	a6  uint64
    	a7  uint64
    	s2  uint64
    	s3  uint64
    	s4  uint64
    	s5  uint64
    	s6  uint64
    	s7  uint64
    	s8  uint64
    	s9  uint64
    	s10 uint64
    	s11 uint64
    	t3  uint64
    	t4  uint64
    	t5  uint64
    	t6  uint64
    }
    
    type user_fpregs_struct struct {
    	f [528]byte
    }
    
    type usigset struct {
    	us_x__val [16]uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. test/live_regabi.go

    // concatstring slice should die on return
    
    var s1, s2, s3, s4, s5, s6, s7, s8, s9, s10 string
    
    func f28(b bool) {
    	if b {
    		printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10) // ERROR "stack object .autotmp_[0-9]+ \[10\]string$"
    	}
    	printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10)
    	printstring(s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10)
    }
    
    // map iterator should die on end of range loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top