Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for V2 (0.14 sec)

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

    	VADDUHM V1, V2, V3              // 10611040
    	VADDUWM V1, V2, V3              // 10611080
    	VADDUDM V1, V2, V3              // 106110c0
    	VADDUQM V1, V2, V3              // 10611100
    	VADDCUQ V1, V2, V3              // 10611140
    	VADDCUW V1, V2, V3              // 10611180
    	VADDUBS V1, V2, V3              // 10611200
    	VADDUHS V1, V2, V3              // 10611240
    	VADDUWS V1, V2, V3              // 10611280
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/s390x.s

    	VAG	V3, V4, V4              // e743400030f3
    	VAQ	V3, V4, V4              // e743400040f3
    	VAB	V1, V2                  // e721200000f3
    	VAH	V1, V2                  // e721200010f3
    	VAF	V1, V2                  // e721200020f3
    	VAG	V1, V2                  // e721200030f3
    	VAQ	V1, V2                  // e721200040f3
    	VSB	V3, V4, V4              // e744300000f7
    	VSH	V3, V4, V4              // e744300010f7
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/parse.go

    	}
    }
    
    // registerList parses an ARM or ARM64 register list expression, a list of
    // registers in []. There may be comma-separated ranges or individual
    // registers, as in [R1,R3-R5] or [V1.S4, V2.S4, V3.S4, V4.S4].
    // For ARM, only R0 through R15 may appear.
    // For ARM64, V0 through V31 with arrangement may appear.
    //
    // For 386/AMD64 register list specifies 4VNNIW-style multi-source operand.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64.s

    	VUSHR	$2, V1.B8, V2.B8                // 22040e2f
    	VUSHR	$2, V1.B16, V2.B16              // 22040e6f
    	VSHL	$56, V1.D2, V2.D2               // 2254784f
    	VSHL	$24, V1.S4, V2.S4               // 2254384f
    	VSHL	$24, V1.S2, V2.S2               // 2254380f
    	VSHL	$8, V1.H4, V2.H4                // 2254180f
    	VSHL	$8, V1.H8, V2.H8                // 2254184f
    	VSHL	$2, V1.B8, V2.B8                // 22540a0f
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  5. doc/go_spec.html

    with the precision of that type argument. For example, given the function:
    </p>
    
    <pre>
    func dotProduct[F ~float32|~float64](v1, v2 []F) F {
    	var s F
    	for i, x := range v1 {
    		y := v2[i]
    		s += x * y
    	}
    	return s
    }
    </pre>
    
    <p>
    the product <code>x * y</code> and the addition <code>s += x * y</code>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  6. src/cmd/api/testdata/src/pkg/p1/p1.go

    )
    
    const (
    	ConversionConst = MyInt(5)
    )
    
    // Variables from function calls.
    var (
    	V = ptwo.F()
    	// Deprecated: use WError.
    	VError = BarE()
    	V1     = Bar1(1, 2, 3)
    	V2     = ptwo.G()
    )
    
    // Variables with conversions:
    var (
    	StrConv  = string("foo")
    	ByteConv = []byte("foo")
    )
    
    var ChecksumError = ptwo.NewError("gzip checksum error")
    
    const B0 = 2
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	VPMULL2 V2.D2, V1.D2, V4.Q1                                 // 24e0e24e
    	VPMULL V2.B8, V1.B8, V3.H8                                  // 23e0220e
    	VPMULL2 V2.B16, V1.B16, V4.H8                               // 24e0224e
    	VRBIT V10.B16, V21.B16                                      // 5559606e
    	VREV32 V2.H8, V1.H8                                         // 4108606e
    	VREV16 V2.B8, V1.B8                                         // 4118200e
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  8. src/cmd/cgo/internal/test/issue26743/b.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue26743
    
    import "C"
    
    Go
    - Registered: Tue Mar 26 11:13:08 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 206 bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/operand_test.go

    	{"VS56", "VS56"},
    	{"VS57", "VS57"},
    	{"VS58", "VS58"},
    	{"VS59", "VS59"},
    	{"VS60", "VS60"},
    	{"VS61", "VS61"},
    	{"VS62", "VS62"},
    	{"VS63", "VS63"},
    	{"V0", "V0"},
    	{"V1", "V1"},
    	{"V2", "V2"},
    	{"V3", "V3"},
    	{"V4", "V4"},
    	{"V5", "V5"},
    	{"V6", "V6"},
    	{"V7", "V7"},
    	{"V8", "V8"},
    	{"V9", "V9"},
    	{"V10", "V10"},
    	{"V11", "V11"},
    	{"V12", "V12"},
    	{"V13", "V13"},
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    constant. It can do this by reading object files. If cgo has decided
    that t1 is a type, v2 and v3 are variables or functions, and i4, i5
    are integer constants, u6 is an unsigned integer constant, and f7 and f8
    are float constants, and s9 and s10 are string constants, it generates:
    
    	<preamble>
    	__typeof__(t1) *__cgo__1;
    	__typeof__(v2) *__cgo__2;
    	__typeof__(v3) *__cgo__3;
    	__typeof__(i4) *__cgo__4;
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
Back to top