Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for adjust (0.15 sec)

  1. doc/go_mem.html

    funcs[i]()
    </pre>
    
    <p>
    If the complex code needs many registers, a compiler for single-threaded programs
    could discard <code>i</code> without saving a copy and then reload
    <code>i = *p</code> just before
    <code>funcs[i]()</code>.
    A Go compiler must not, because the value of <code>*p</code> may have changed.
    (Instead, the compiler could spill <code>i</code> to the stack.)
    </p>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    and <a href="#Struct_types">struct</a> types have elements and fields that may
    be <a href="#Address_operators">addressed</a> individually. Each such element
    acts like a variable.
    </p>
    
    <p>
    The <i>static type</i> (or just <i>type</i>) of a variable is the
    type given in its declaration, the type provided in the
    <code>new</code> call or composite literal, or the type of
    an element of a structured variable.
    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)
  3. doc/asm.html

    	MOVQ	CX, 0(SP)
    	CALL	runtime·externalthreadhandler(SB)
    	RET
    </pre>
    
    <p>
    In the general case, the frame size is followed by an argument size, separated by a minus sign.
    (It's not a subtraction, just idiosyncratic syntax.)
    The frame size <code>$24-8</code> states that the function has a 24-byte frame
    and is called with 8 bytes of argument, which live on the caller's frame.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    and <a href="#Struct_types">struct</a> types have elements and fields that may
    be <a href="#Address_operators">addressed</a> individually. Each such element
    acts like a variable.
    </p>
    
    <p>
    The <i>static type</i> (or just <i>type</i>) of a variable is the
    type given in its declaration, the type provided in the
    <code>new</code> call or composite literal, or the type of
    an element of a structured variable.
    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