Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for s9 (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/signal_freebsd_riscv64.go

    func (c *sigctxt) s6() uint64  { return c.regs().mc_gpregs.gp_s[6] }
    func (c *sigctxt) s7() uint64  { return c.regs().mc_gpregs.gp_s[7] }
    func (c *sigctxt) s8() uint64  { return c.regs().mc_gpregs.gp_s[8] }
    func (c *sigctxt) s9() uint64  { return c.regs().mc_gpregs.gp_s[9] }
    func (c *sigctxt) s10() uint64 { return c.regs().mc_gpregs.gp_s[10] }
    func (c *sigctxt) s11() uint64 { return c.regs().mc_gpregs.gp_s[11] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:17:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/expr0.go

    	s0 = "foo"
    	s1 = +"foo" /* ERROR "not defined" */
    	s2 = -s0 /* ERROR "not defined" */
    	s3 = !s0 /* ERROR "not defined" */
    	s4 = ^s0 /* ERROR "not defined" */
    	s5 = *s4
    	s6 = &s4
    	s7 = *s6
    	s8 = <-s7
    	s9 = ~ /* ERROR "cannot use ~ outside of interface or type constraint" */ s0
    
    	// channel
    	ch chan int
    	rc <-chan float64
    	sc chan <- string
    	ch0 = +ch /* ERROR "not defined" */
    	ch1 = -ch /* ERROR "not defined" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/crypto/aes/aes_test.go

    // (Can adapt this code to generate them too.)
    func TestTd(t *testing.T) {
    	for i := 0; i < 256; i++ {
    		s := uint32(sbox1[i])
    		s9 := mul(s, 0x9)
    		sb := mul(s, 0xb)
    		sd := mul(s, 0xd)
    		se := mul(s, 0xe)
    		w := se<<24 | s9<<16 | sd<<8 | sb
    		td := [][256]uint32{td0, td1, td2, td3}
    		for j := 0; j < 4; j++ {
    			if x := td[j][i]; x != w {
    				t.Fatalf("td[%d][%d] = %#x, want %#x", j, i, x, w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    		0, // i5
    		0, // u6
    		f7,
    		f8,
    		0, // s9
    		0, // s10
    		1
    	};
    
    	const char __cgodebug_str__9[] = s9;
    	const unsigned long long __cgodebug_strlen__9 = sizeof(s9)-1;
    	const char __cgodebug_str__10[] = s10;
    	const unsigned long long __cgodebug_strlen__10 = sizeof(s10)-1;
    
    and again invokes the system C compiler, to produce an object file
    containing debug information. Cgo parses the DWARF debug information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    	R0 Reg = iota
    	R1
    	R2
    	R3
    	R4
    	R5
    	R6
    	R7
    	R8
    	R9
    	R10
    	R11
    	R12
    	R13
    	R14
    	R15
    
    	S0
    	S1
    	S2
    	S3
    	S4
    	S5
    	S6
    	S7
    	S8
    	S9
    	S10
    	S11
    	S12
    	S13
    	S14
    	S15
    	S16
    	S17
    	S18
    	S19
    	S20
    	S21
    	S22
    	S23
    	S24
    	S25
    	S26
    	S27
    	S28
    	S29
    	S30
    	S31
    
    	D0
    	D1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
Back to top