Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for vmaxud (0.11 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VADDPD.RD_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    	VADDPD.RZ_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    	VADDPD.RN_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    	// Unsupported SAE.
    	VMAXPD.SAE (AX), Z2, K1, Z1      // ERROR "illegal SAE with memory argument"
    	VADDPD.SAE X3, X2, K1, X1        // ERROR "unsupported SAE"
    	// Unsupported zeroing.
    	VFPCLASSPDX.Z $0, (AX), K2, K1   // ERROR "unsupported zeroing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/anames.go

    	"FCVTZSDW",
    	"FCVTZSS",
    	"FCVTZSSW",
    	"FCVTZUD",
    	"FCVTZUDW",
    	"FCVTZUS",
    	"FCVTZUSW",
    	"FDIVD",
    	"FDIVS",
    	"FLDPD",
    	"FLDPQ",
    	"FLDPS",
    	"FMADDD",
    	"FMADDS",
    	"FMAXD",
    	"FMAXNMD",
    	"FMAXNMS",
    	"FMAXS",
    	"FMIND",
    	"FMINNMD",
    	"FMINNMS",
    	"FMINS",
    	"FMOVD",
    	"FMOVQ",
    	"FMOVS",
    	"FMSUBD",
    	"FMSUBS",
    	"FMULD",
    	"FMULS",
    	"FNEGD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. test/codegen/floats.go

    	// arm64:"FMIND"
    	// riscv64:"FMIN"
    	// ppc64/power9:"XSMINJDP"
    	// ppc64/power10:"XSMINJDP"
    	return min(a, b)
    }
    
    func Float64Max(a, b float64) float64 {
    	// amd64:"MINSD"
    	// arm64:"FMAXD"
    	// riscv64:"FMAX"
    	// ppc64/power9:"XSMAXJDP"
    	// ppc64/power10:"XSMAXJDP"
    	return max(a, b)
    }
    
    func Float32Min(a, b float32) float32 {
    	// amd64:"MINSS"
    	// arm64:"FMINS"
    	// riscv64:"FMINS"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator.go

    	// the streams instead of the underlying connection *may* not perform the same if two streams
    	// traveling the same direction (e.g. stdout, stderr) are being maxed out.
    	opts := remotecommand.StreamOptions{}
    	if h.Options.Stdin {
    		stdin := websocketStreams.stdinStream
    		if h.MaxBytesPerSec > 0 {
    			stdin = flowrate.NewReader(stdin, h.MaxBytesPerSec)
    		}
    		opts.Stdin = stdin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	VINSWVRX R1, V2, V3                     // 1061118f
    	VMODSD V1, V2, V3                       // 106117cb
    	VMODSQ V1, V2, V3                       // 1061170b
    	VMODSW V1, V2, V3                       // 1061178b
    	VMODUD V1, V2, V3                       // 106116cb
    	VMODUQ V1, V2, V3                       // 1061160b
    	VMODUW V1, V2, V3                       // 1061168b
    	VMSUMCUD V1, V2, V3, V4                 // 108110d7
    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/internal/obj/riscv/cpu.go

    	ASH2ADD
    	ASH2ADDUW
    	ASH3ADD
    	ASH3ADDUW
    	ASLLIUW
    
    	// 1.2: Basic Bit Manipulation (Zbb)
    	AANDN
    	AORN
    	AXNOR
    	ACLZ
    	ACLZW
    	ACTZ
    	ACTZW
    	ACPOP
    	ACPOPW
    	AMAX
    	AMAXU
    	AMIN
    	AMINU
    	ASEXTB
    	ASEXTH
    	AZEXTH
    
    	// 1.3: Bitwise Rotation (Zbb)
    	AROL
    	AROLW
    	AROR
    	ARORI
    	ARORIW
    	ARORW
    	AORCB
    	AREV8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_test.go

    func test(t *testing.T, build func([]byte) []int) {
    	t.Run("ababab...", func(t *testing.T) {
    		// Very repetitive input has numLMS = len(x)/2-1
    		// at top level, the largest it can be.
    		// But maxID is only two (aba and ab$).
    		size := 100000
    		if testing.Short() {
    			size = 10000
    		}
    		x := make([]byte, size)
    		for i := range x {
    			x[i] = "ab"[i%2]
    		}
    		testSA(t, x, build)
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "LoweredFMIND", argLength: 2, reg: fp21, resultNotInArgs: true, asm: "FMIND", commutative: true, typ: "Float64"},             // min(arg0, arg1)
    		{name: "LoweredFMAXD", argLength: 2, reg: fp21, resultNotInArgs: true, asm: "FMAXD", commutative: true, typ: "Float64"},             // max(arg0, arg1)
    	}
    
    	RISCV64blocks := []blockData{
    		{name: "BEQ", controls: 2},
    		{name: "BNE", controls: 2},
    		{name: "BLT", controls: 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	// - A closed stream that has been removed (this will have ID <= maxID)
    	// - An idle stream that is being used for "grouping" (this will have ID > maxID)
    	n := ws.nodes[streamID]
    	if n == nil {
    		if streamID <= ws.maxID || ws.maxIdleNodesInTree == 0 {
    			return
    		}
    		ws.maxID = streamID
    		n = &http2priorityNode{
    			q:      *ws.queuePool.get(),
    			id:     streamID,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9_gtables.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
Back to top