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/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 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  2. 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 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  3. 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 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  4. 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 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    immediately, yielding the element type's <a href="#The_zero_value">zero value</a>
    after any previously sent values have been received.
    </p>
    
    <pre>
    v1 := &lt;-ch
    v2 = &lt;-ch
    f(&lt;-ch)
    &lt;-strobe  // wait until clock pulse and discard received value
    </pre>
    
    <p>
    A receive expression used in an <a href="#Assignments">assignment</a> or initialization of the special form
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64error.s

    	VPMULL2	V1.H4, V2.H4, V3.Q1                              // ERROR "operand mismatch"
    	VPMULL2	V1.D1, V2.D1, V3.Q1                              // ERROR "operand mismatch"
    	VPMULL2	V1.B8, V2.B8, V3.H8                              // ERROR "operand mismatch"
    	VEXT	$8, V1.B16, V2.B8, V2.B16                        // ERROR "invalid arrangement"
    	VEXT	$8, V1.H8, V2.H8, V2.H8                          // ERROR "invalid arrangement"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
  7. src/cmd/api/testdata/src/pkg/p4/p4.go

    // license that can be found in the LICENSE file.
    
    package p4
    
    type Pair[T1 interface{ M() }, T2 ~int] struct {
    	f1 T1
    	f2 T2
    }
    
    func NewPair[T1 interface{ M() }, T2 ~int](v1 T1, v2 T2) Pair[T1, T2] {
    	return Pair[T1, T2]{f1: v1, f2: v2}
    }
    
    func (p Pair[X1, _]) First() X1 {
    	return p.f1
    }
    
    func (p Pair[_, X2]) Second() X2 {
    	return p.f2
    }
    
    // Deprecated: Use something else.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 552 bytes
    - Viewed (0)
  8. 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 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  9. 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 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  10. 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 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
Back to top