Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for vmaxud (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/internal/obj/x86/asm6.go

    	{ALSLW, yml_rl, Pq, opBytes{0x03}},
    	{ALSLQ, yml_rl, Pw, opBytes{0x0f, 0x03}},
    	{AMASKMOVOU, yxr, Pe, opBytes{0xf7}},
    	{AMASKMOVQ, ymr, Pm, opBytes{0xf7}},
    	{AMAXPD, yxm, Pe, opBytes{0x5f}},
    	{AMAXPS, yxm, Pm, opBytes{0x5f}},
    	{AMAXSD, yxm, Pf2, opBytes{0x5f}},
    	{AMAXSS, yxm, Pf3, opBytes{0x5f}},
    	{AMINPD, yxm, Pe, opBytes{0x5d}},
    	{AMINPS, yxm, Pm, opBytes{0x5d}},
    	{AMINSD, yxm, Pf2, opBytes{0x5d}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/avx_optabs.go

    		avxEscape | vex256 | vex66 | vex0F38 | vexW0, 0x2E,
    		avxEscape | vex128 | vex66 | vex0F38 | vexW0, 0x2C,
    		avxEscape | vex256 | vex66 | vex0F38 | vexW0, 0x2C,
    	}},
    	{as: AVMAXPD, ytab: _yvaddpd, prefix: Pavx, op: opBytes{
    		avxEscape | vex128 | vex66 | vex0F | vexW0, 0x5F,
    		avxEscape | vex256 | vex66 | vex0F | vexW0, 0x5F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
Back to top