Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for st1 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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