Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addresses (0.24 sec)

  1. doc/go1.22.html

      class.
    </p>
    <p>
      A consequence of this change is that some objects' addresses that were previously
      always aligned to a 16 byte (or higher) boundary will now only be aligned to an 8
      byte boundary.
      Some programs that use assembly instructions that require memory addresses to be
      more than 8-byte aligned and rely on the memory allocator's previous alignment behavior
    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

    ||    conditional OR     p || q  is  "if p then true else q"
    !     NOT                !p      is  "not p"
    </pre>
    
    
    <h3 id="Address_operators">Address operators</h3>
    
    <p>
    For an operand <code>x</code> of type <code>T</code>, the address operation
    <code>&amp;x</code> generates a pointer of type <code>*T</code> to <code>x</code>.
    The operand must be <i>addressable</i>,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/asm.html

    </p>
    
    <p>
    Addressing modes:
    </p>
    
    <ul>
    
    <li>
    <code>(DI)(BX*2)</code>: The location at address <code>DI</code> plus <code>BX*2</code>.
    </li>
    
    <li>
    <code>64(DI)(BX*2)</code>: The location at address <code>DI</code> plus <code>BX*2</code> plus 64.
    These modes accept only 1, 2, 4, and 8 as scale factors.
    </li>
    
    </ul>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    ||    conditional OR     p || q  is  "if p then true else q"
    !     NOT                !p      is  "not p"
    </pre>
    
    
    <h3 id="Address_operators">Address operators</h3>
    
    <p>
    For an operand <code>x</code> of type <code>T</code>, the address operation
    <code>&amp;x</code> generates a pointer of type <code>*T</code> to <code>x</code>.
    The operand must be <i>addressable</i>,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top