Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for vminsw (0.3 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	VMAXSH:         "vmaxsh",
    	VMAXSW:         "vmaxsw",
    	VMAXUB:         "vmaxub",
    	VMAXUH:         "vmaxuh",
    	VMAXUW:         "vmaxuw",
    	VMHADDSHS:      "vmhaddshs",
    	VMHRADDSHS:     "vmhraddshs",
    	VMINFP:         "vminfp",
    	VMINSB:         "vminsb",
    	VMINSH:         "vminsh",
    	VMINSW:         "vminsw",
    	VMINUB:         "vminub",
    	VMINUH:         "vminuh",
    	VMINUW:         "vminuw",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/anames.go

    	"VPINSRB",
    	"VPINSRD",
    	"VPINSRQ",
    	"VPINSRW",
    	"VPLZCNTD",
    	"VPLZCNTQ",
    	"VPMADD52HUQ",
    	"VPMADD52LUQ",
    	"VPMADDUBSW",
    	"VPMADDWD",
    	"VPMASKMOVD",
    	"VPMASKMOVQ",
    	"VPMAXSB",
    	"VPMAXSD",
    	"VPMAXSQ",
    	"VPMAXSW",
    	"VPMAXUB",
    	"VPMAXUD",
    	"VPMAXUQ",
    	"VPMAXUW",
    	"VPMINSB",
    	"VPMINSD",
    	"VPMINSQ",
    	"VPMINSW",
    	"VPMINUB",
    	"VPMINUD",
    	"VPMINUQ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    	VMINPD Z14, Z0, K1, Z14                            // 6251fd495df6
    	VMINPD Z7, Z0, K1, Z14                             // 6271fd495df7
    	VMINPD Z1, Z22, K2, Z8                             // 6271cd425dc1
    	VMINPD Z16, Z22, K2, Z8                            // 6231cd425dc0
    	VMINPD -7(CX), Z22, K2, Z8                         // 6271cd425d81f9ffffff
    	VMINPD 15(DX)(BX*4), Z22, K2, Z8                   // 6271cd425d849a0f000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 410.5K bytes
    - Viewed (0)
  4. test/codegen/floats.go

    }
    
    func Float32Min(a, b float32) float32 {
    	// amd64:"MINSS"
    	// arm64:"FMINS"
    	// riscv64:"FMINS"
    	// ppc64/power9:"XSMINJDP"
    	// ppc64/power10:"XSMINJDP"
    	return min(a, b)
    }
    
    func Float32Max(a, b float32) float32 {
    	// amd64:"MINSS"
    	// arm64:"FMAXS"
    	// riscv64:"FMAXS"
    	// ppc64/power9:"XSMAXJDP"
    	// ppc64/power10:"XSMAXJDP"
    	return max(a, b)
    }
    
    // ------------------------ //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	VINSHVLX R1, V2, V3                     // 1061104f
    	VINSHVRX R1, V2, V3                     // 1061114f
    	VINSW R1, $4, V3                        // 106408cf
    	VINSWLX R1, R2, V3                      // 1061128f
    	VINSWRX R1, R2, V3                      // 1061138f
    	VINSWVLX R1, V2, V3                     // 1061108f
    	VINSWVRX R1, V2, V3                     // 1061118f
    	VMODSD V1, V2, V3                       // 106117cb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	//TODO: PMINSW (BX), M2                 // 0fea13
    	//TODO: PMINSW (R11), M2                // 410fea13
    	//TODO: PMINSW M2, M2                   // 0fead2
    	//TODO: PMINSW M3, M2                   // 0fead3
    	//TODO: PMINSW (BX), M3                 // 0fea1b
    	//TODO: PMINSW (R11), M3                // 410fea1b
    	//TODO: PMINSW M2, M3                   // 0feada
    	//TODO: PMINSW M3, M3                   // 0feadb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  7. test/slice3.go

    	fmt.Fprintf(bout, "func main() {\n")
    
    	index := []string{
    		"0",
    		"1",
    		"2",
    		"3",
    		"10",
    		"20",
    		"vminus1",
    		"v0",
    		"v1",
    		"v2",
    		"v3",
    		"v10",
    		"v20",
    	}
    
    	parse := func(s string) (n int, isconst bool) {
    		if s == "vminus1" {
    			return -1, false
    		}
    		isconst = true
    		if s[0] == 'v' {
    			isconst = false
    			s = s[1:]
    		}
    		n, _ = strconv.Atoi(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/avx512enc/avx512bw.s

    	VPMINSW 7(AX)(CX*4), Y0, K6, Y7                    // 62f17d2eeabc8807000000 or 62f1fd2eeabc8807000000
    	VPMINSW 7(AX)(CX*1), Y0, K6, Y7                    // 62f17d2eeabc0807000000 or 62f1fd2eeabc0807000000
    	VPMINSW Z23, Z20, K3, Z16                          // 62a15d43eac7 or 62a1dd43eac7
    	VPMINSW Z19, Z20, K3, Z16                          // 62a15d43eac3 or 62a1dd43eac3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 159.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	"VMULHSD",
    	"VMULEUD",
    	"VMULESD",
    	"VMSUMCUD",
    	"VMODUW",
    	"VMODUQ",
    	"VMODUD",
    	"VMODSW",
    	"VMODSQ",
    	"VMODSD",
    	"VINSWVRX",
    	"VINSWVLX",
    	"VINSWRX",
    	"VINSWLX",
    	"VINSW",
    	"VINSHVRX",
    	"VINSHVLX",
    	"VINSHRX",
    	"VINSHLX",
    	"VINSDRX",
    	"VINSDLX",
    	"VINSD",
    	"VINSBVRX",
    	"VINSBVLX",
    	"VINSBRX",
    	"VINSBLX",
    	"VGNB",
    	"VEXTSD2Q",
    	"VEXTRACTWM",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  10. src/debug/pe/symbols_test.go

    	// build from https://github.com/mstorsjo/llvm-mingw/releases; it
    	// corresponds to the mingw "crt2.o" object. The object itself was
    	// built using an x86_64 HOST=linux TARGET=windows clang cross
    	// compiler based on LLVM 13. More build details can be found at
    	// https://github.com/mstorsjo/llvm-mingw/releases.
    	f, err := Open("testdata/llvm-mingw-20211002-msvcrt-x86_64-crt2")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top