Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for h4 (0.36 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <pre class="ebnf">
    TypeDecl = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) .
    TypeSpec = AliasDecl | TypeDef .
    </pre>
    
    <h4 id="Alias_declarations">Alias declarations</h4>
    
    <p>
    An alias declaration binds an identifier to the given type.
    </p>
    
    <pre class="ebnf">
    AliasDecl = identifier "=" Type .
    </pre>
    
    <p>
    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)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_BACNET_MS_TP ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 = 187
    pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201
    pkg syscall (netbsd-arm64-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_CAN20B = 190
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64error.s

    	VFMLA	V1.B16, V12.B16, V3.B16                          // ERROR "invalid arrangement"
    	VFMLA	V1.H4, V12.H4, V3.H4                             // ERROR "invalid arrangement"
    	VFMLA	V1.H8, V12.H8, V3.H8                             // ERROR "invalid arrangement"
    	VFMLA	V1.H4, V12.H4, V3.H4                             // 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)
  4. src/cmd/asm/internal/asm/testdata/arm64.s

    	VLD3R.P	6(R15), [V15.H4, V16.H4, V17.H4]                // efe5df0d
    	VLD3R.P	(R15)(R6), [V15.H8, V16.H8, V17.H8]             // efe5c64d
    	VLD4R	(R0), [V0.B8, V1.B8, V2.B8, V3.B8]              // 00e0600d
    	VLD4R.P	16(RSP), [V31.S4, V0.S4, V1.S4, V2.S4]          // ffebff4d
    	VLD4R.P	(R15)(R9), [V15.H4, V16.H4, V17.H4, V18.H4]     // efe5e90d
    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)
  5. doc/go_spec.html

    The following table describes the minimum language version required for
    features introduced after Go 1.
    </p>
    
    <h4 id="Go_1.9">Go 1.9</h4>
    <ul>
    <li>
    An <a href="#Alias_declarations">alias declaration</a> may be used to declare an alias name for a type.
    </li>
    </ul>
    
    <h4 id="Go_1.13">Go 1.13</h4>
    <ul>
    <li>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	VST1.P [V13.H8, V14.H8, V15.H8], (R3)(R14)                  // 6d648e4c
    	VST1.P [V16.S4, V17.S4, V18.S4, V19.S4], 64(R6)             // d0289f4c
    	VST1.P [V19.H4, V20.H4, V21.H4, V22.H4], (R4)(R16)          // 9324900c
    	VST1 V12.B[3], (R1)                                         // 2c0c000d
    	VST1 V12.B[3], (R1)                                         // 2c0c000d
    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)
  7. api/go1.1.txt

    pkg syscall (freebsd-386), const DLT_AX25_KISS = 202
    pkg syscall (freebsd-386), const DLT_BACNET_MS_TP = 165
    pkg syscall (freebsd-386), const DLT_BLUETOOTH_HCI_H4 = 187
    pkg syscall (freebsd-386), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 201
    pkg syscall (freebsd-386), const DLT_CAN20B = 190
    pkg syscall (freebsd-386), const DLT_CAN_SOCKETCAN = 227
    pkg syscall (freebsd-386), const DLT_CAN_SOCKETCAN ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/arm64.go

    		case "B16":
    			if isIndex {
    				return errors.New("invalid register extension")
    			}
    			a.Reg = arm64.REG_ARNG + (reg & 31) + ((arm64.ARNG_16B & 15) << 5)
    		case "H4":
    			if isIndex {
    				return errors.New("invalid register extension")
    			}
    			a.Reg = arm64.REG_ARNG + (reg & 31) + ((arm64.ARNG_4H & 15) << 5)
    		case "H8":
    			if isIndex {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  9. doc/go1.22.html

      Go 1.22 or newer.
      A future release will bring some of these improvements to traces produced by older
      version of Go.
    </p>
    
    <h3 id="vet">Vet</h3>
    
    <h4 id="vet-loopclosure">References to loop variables</h4>
    
    <p><!-- CL 539016, https://go.dev/issue/63888: cmd/vet: do not report variable capture for loop variables with the new lifetime rules -->
      The behavior of the <code>vet</code> tool has changed to match
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const DLT_AX25_KISS ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_BACNET_MS_TP ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4 ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_BLUETOOTH_HCI_H4_WITH_PHDR ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_CAN20B ideal-int
    pkg syscall (freebsd-386-cgo), const DLT_CAN_SOCKETCAN ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top