Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for s2 (0.28 sec)

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

    	FMAXNMD F20, F6, F16                       // d068741e
    	//TODO VFMAXNMP V3.S2, F2                  // 62c8307e
    	//TODO VFMAXNMP V25.S2, V4.S2, V2.S2       // 82c4392e
    	//TODO VFMAXNMV V14.S4, F15                // cfc9306e
    	//TODO VFMAXP V3.S2, F27                   // 7bf8307e
    	//TODO VFMAXP V29.S2, V30.S2, V9.S2        // c9f73d2e
    	//TODO VFMAXV V13.S4, F14                  // aef9306e
    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)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	VZIP1	V6.D2, V9.D2, V11.D2            // 2b39c64e
    	VZIP2	V10.D2, V13.D2, V3.D2           // a379ca4e
    	VZIP1	V17.S2, V4.S2, V26.S2           // 9a38910e
    	VZIP2	V25.S2, V14.S2, V25.S2          // d979990e
    	VUXTL	V30.B8, V30.H8                  // dea7082f
    	VUXTL	V30.H4, V29.S4                  // dda7102f
    	VUXTL	V29.S2, V2.D2                   // a2a7202f
    	VUXTL2	V30.H8, V30.S4                  // dea7106f
    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)
  3. doc/go1.17_spec.html

    array with the operand.
    </p>
    
    <pre>
    var a [10]int
    s1 := a[3:7]   // underlying array of s1 is array a; &amp;s1[2] == &amp;a[5]
    s2 := s1[1:4]  // underlying array of s2 is underlying array of s1 which is array a; &amp;s2[1] == &amp;a[5]
    s2[1] = 42     // s2[1] == s1[2] == a[5] == 42; they all refer to the same underlying array element
    </pre>
    
    
    <h4>Full slice expressions</h4>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64error.s

    	VFMLA	V1.S4, V12.S2, V3.D2                             // ERROR "operand mismatch"
    	VFMLA	V1.H4, V12.H4, V3.D2                             // ERROR "operand mismatch"
    	VFMLS	V1.S2, V12.S2, V3.S4                             // ERROR "operand mismatch"
    	VFMLS	V1.S2, V12.D2, V3.S4                             // ERROR "operand mismatch"
    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)
  5. api/go1.22.txt

    pkg debug/elf, const R_LARCH_CFA R_LARCH #63725
    pkg debug/elf, const R_LARCH_DELETE = 101 #63725
    pkg debug/elf, const R_LARCH_DELETE R_LARCH #63725
    pkg debug/elf, const R_LARCH_PCREL20_S2 = 103 #63725
    pkg debug/elf, const R_LARCH_PCREL20_S2 R_LARCH #63725
    pkg debug/elf, const R_LARCH_SUB6 = 106 #63725
    pkg debug/elf, const R_LARCH_SUB6 R_LARCH #63725
    pkg debug/elf, const R_LARCH_SUB_ULEB128 = 108 #63725
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jan 24 20:54:27 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  6. doc/go_spec.html

    array with the operand.
    </p>
    
    <pre>
    var a [10]int
    s1 := a[3:7]   // underlying array of s1 is array a; &amp;s1[2] == &amp;a[5]
    s2 := s1[1:4]  // underlying array of s2 is underlying array of s1 which is array a; &amp;s2[1] == &amp;a[5]
    s2[1] = 42     // s2[1] == s1[2] == a[5] == 42; they all refer to the same underlying array element
    
    var s []int
    s3 := s[:0]    // s3 == nil
    </pre>
    
    
    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