Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for st1 (0.4 sec)

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