Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for V2 (0.15 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 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  2. 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 May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top