Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for uint32 (0.17 sec)

  1. doc/go1.22.html

    <code>Uint32</code>,
    <code>Uint32N</code>,
    <code>Uint64</code>,
    <code>Uint64N</code>,
    <code>Uint</code>,
    and
    <code>UintN</code>.
    
    <li>The
    new generic function <a href="/pkg/math/rand/v2/#N"><code>N</code></a>
    is like
    <a href="/pkg/math/rand/v2/#Int64N"><code>Int64N</code></a> or
    <a href="/pkg/math/rand/v2/#Uint64N"><code>Uint64N</code></a>
    but works for any integer type.
    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)
  2. doc/go1.17_spec.html

    <a href="#Blocks">universe block</a>:
    </p>
    <pre class="grammar">
    Types:
    	bool byte complex64 complex128 error float32 float64
    	int int8 int16 int32 int64 rune string
    	uint uint8 uint16 uint32 uint64 uintptr
    
    Constants:
    	true false iota
    
    Zero value:
    	nil
    
    Functions:
    	append cap close complex copy delete imag len
    	make new panic print println real recover
    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)
  3. doc/asm.html

    to lay down explicit data into the instruction stream within a <code>TEXT</code>.
    Here's how the 386 runtime defines the 64-bit atomic load function.
    </p>
    
    <pre>
    // uint64 atomicload64(uint64 volatile* addr);
    // so actually
    // void atomicload64(uint64 *res, uint64 volatile *addr);
    TEXT runtime·atomicload64(SB), NOSPLIT, $0-12
    	MOVL	ptr+0(FP), AX
    	TESTL	$7, AX
    	JZ	2(PC)
    	MOVL	0, AX // crash with nil ptr deref
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    [<a href="#Go_1.21">Go 1.21</a>]:
    </p>
    <pre class="grammar">
    Types:
    	any bool byte comparable
    	complex64 complex128 error float32 float64
    	int int8 int16 int32 int64 rune string
    	uint uint8 uint16 uint32 uint64 uintptr
    
    Constants:
    	true false iota
    
    Zero value:
    	nil
    
    Functions:
    	append cap clear close complex copy delete imag len
    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)
Back to top