Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for st1 (0.02 sec)

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