Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for st1 (0.1 sec)

  1. test/typeparam/issue48191.go

    			m0 map[G2]byte
    			s1 G3
    		}{st3.st1.st3.i1: m2[<-m4[i8_1]][st5.st1.st3.i1-st3.st1.st3.i1-i2]}
    		st1 = struct {
    		}{}
    		pi64_0 = pi64_1
    		m4 = m6
    		as7 = as7
    		m6[(i8_0+i8_0)&^i8_1&^i8_1] = m5[G1(96)^i8_1]
    		st2 = struct {
    		}{}
    		st1 = struct {
    		}{}
    		am10 = []map[uint]int64{am9[len((*st4.pm2)[int64(65)].s0)+i], am11[st4.st1.st3.i1%st4.st1.st3.i1^i1]}
    		i2 = st5.st1.st3.i1*i - st5.st1.st3.i1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. internal/disk/disk_unix.go

    // SameDisk reports whether di1 and di2 describe the same disk.
    func SameDisk(disk1, disk2 string) (bool, error) {
    	st1 := syscall.Stat_t{}
    	st2 := syscall.Stat_t{}
    
    	if err := syscall.Stat(disk1, &st1); err != nil {
    		return false, err
    	}
    
    	if err := syscall.Stat(disk2, &st2); err != nil {
    		return false, err
    	}
    
    	return st1.Dev == st2.Dev, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/switch_test.go

    	benchmarkSwitchInterfaceType(b, false)
    }
    
    type SI0 interface {
    	si0()
    }
    type ST0 struct {
    }
    
    func (ST0) si0() {
    }
    
    type SI1 interface {
    	si1()
    }
    type ST1 struct {
    }
    
    func (ST1) si1() {
    }
    
    type SI2 interface {
    	si2()
    }
    type ST2 struct {
    }
    
    func (ST2) si2() {
    }
    
    type SI3 interface {
    	si3()
    }
    type ST3 struct {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/doc.go

    	VLD1 (R2), [V21.B16]                          <=>    ld1 {v21.16b}, [x2]
    	VST1.P V9.S[1], (R16)(R21)                    <=>    st1 {v9.s}[1], [x16], x28
    	VST1.P [V13.H8, V14.H8, V15.H8], (R3)(R14)    <=>    st1 {v13.8h-v15.8h}, [x3], x14
    	VST1.P [V14.D1, V15.D1], (R7)(R23)            <=>    st1 {v14.1d, v15.1d}, [x7], x23
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf_test.go

    		}
    		if s.Addr == 0 || s.Size == 0 {
    			continue
    		}
    		secs = append(secs, s)
    	}
    
    	secOverlaps := func(s1, s2 *elf.Section) bool {
    		st1 := s1.Addr
    		st2 := s2.Addr
    		en1 := s1.Addr + s1.Size
    		en2 := s2.Addr + s2.Size
    		return max(st1, st2) < min(en1, en2)
    	}
    
    	// Sort by address
    	sort.SliceStable(secs, func(i, j int) bool {
    		return secs[i].Addr < secs[j].Addr
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		}
    	}
    	return nil
    }
    
    // equalValueType returns true if the two value types are semantically
    // equal. It ignores the internal fields used during encode/decode.
    func equalValueType(st1, st2 *ValueType) bool {
    	return st1.Type == st2.Type && st1.Unit == st2.Unit
    }
    
    // locationIDMap is like a map[uint64]*Location, but provides efficiency for
    // ids that are densely numbered, which is often the case.
    type locationIDMap struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    				args[1] = fmt.Sprintf("$%s(SB)", s)
    			}
    		}
    	}
    
    	// Move addressing mode into opcode suffix.
    	suffix := ""
    	switch inst.Op {
    	case LDR, LDRB, LDRH, LDRSB, LDRSH, LDRSW, STR, STRB, STRH, STUR, STURB, STURH, LD1, ST1:
    		switch mem := inst.Args[1].(type) {
    		case MemImmediate:
    			switch mem.Mode {
    			case AddrOffset:
    				// no suffix
    			case AddrPreIndex:
    				suffix = ".W"
    			case AddrPostIndex, AddrPostReg:
    				suffix = ".P"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  8. src/os/os_test.go

    		t.Fatal(err)
    	}
    
    	st1, err := Stat(link)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if !SameFile(st, st1) {
    		t.Error("Stat doesn't follow relative symlink")
    	}
    
    	if runtime.GOOS == "windows" {
    		Remove(link)
    		err = Symlink(target[len(filepath.VolumeName(target)):], link)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		st1, err := Stat(link)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    }
    
    func TestStructOfGenericAlg(t *testing.T) {
    	st1 := StructOf([]StructField{
    		{Name: "X", Tag: "x", Type: TypeOf(int64(0))},
    		{Name: "Y", Type: TypeOf(string(""))},
    	})
    	st := StructOf([]StructField{
    		{Name: "S0", Type: st1},
    		{Name: "S1", Type: st1},
    	})
    
    	tests := []struct {
    		rt  Type
    		idx []int
    	}{
    		{
    			rt:  st,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD	$-0x10000(RSP), RSP           // MOVD	$-65536(RSP), RSP           // ff4340d1
    	MOVW	R1, R2
    	MOVW	ZR, R1
    	MOVW	R1, ZR
    	MOVD	R1, R2
    	MOVD	ZR, R1
    
    // store and load
    //
    // LD1/ST1
    	VLD1	(R8), [V1.B16, V2.B16]                          // 01a1404c
    	VLD1.P	(R3), [V31.H8, V0.H8]                           // 7fa4df4c
    	VLD1.P	(R8)(R20), [V21.B16, V22.B16]                   // 15a1d44c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
Back to top