Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addr (0.14 sec)

  1. doc/go1.22.html

    <dl id="archive/tar"><dt><a href="/pkg/archive/tar/">archive/tar</a></dt>
      <dd>
        <p><!-- https://go.dev/issue/58000, CL 513316 -->
          The new method <a href="/pkg/archive/tar#Writer.AddFS"><code>Writer.AddFS</code></a> adds all of the files from an <a href="/pkg/io/fs#FS"><code>fs.FS</code></a> to the archive.
        </p>
      </dd>
    </dl><!-- archive/tar -->
    
    <dl id="archive/zip"><dt><a href="/pkg/archive/zip/">archive/zip</a></dt>
      <dd>
    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/go_mem.html

    and Java’s <code>volatile</code> variables.
    </p>
    
    <h3 id="finalizer">Finalizers</h3>
    
    <p>
    The <a href="/pkg/runtime/"><code>runtime</code></a> package provides
    a <code>SetFinalizer</code> function that adds a finalizer to be called when
    a particular object is no longer reachable by the program.
    A call to <code>SetFinalizer(x, f)</code> is synchronized before the finalization call <code>f(x)</code>.
    </p>
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  3. doc/asm.html

    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
    	LEAL	ret_lo+4(FP), BX
    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

    type <code>uintptr</code> if their arguments (or the struct <code>s</code> in
    the selector expression <code>s.f</code> for <code>Offsetof</code>) are types
    of constant size.
    </p>
    
    <p>
    The function <code>Add</code> adds <code>len</code> to <code>ptr</code>
    and returns the updated pointer <code>unsafe.Pointer(uintptr(ptr) + uintptr(len))</code>
    [<a href="#Go_1.17">Go 1.17</a>].
    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