Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for swift (0.19 sec)

  1. doc/go_mem.html

    This property is called DRF-SC.
    </p>
    
    <p>
    The intent of the formal definition is to match
    the DRF-SC guarantee provided to race-free programs
    by other languages, including C, C++, Java, JavaScript, Rust, and Swift.
    </p>
    
    <p>
    Certain Go language operations such as goroutine creation and memory allocation
    act as synchronization operations.
    The effect of these operations on the synchronized-before partial order
    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)
  2. doc/go1.17_spec.html

    var u1 = 1.0&lt;&lt;s != 0           // illegal: 1.0 has type float64, cannot shift
    var u2 = 1&lt;&lt;s != 1.0           // illegal: 1 has type float64, cannot shift
    var v float32 = 1&lt;&lt;s           // illegal: 1 has type float32, cannot shift
    var w int64 = 1.0&lt;&lt;33          // 1.0&lt;&lt;33 is a constant shift expression; w == 1&lt;&lt;33
    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/go_spec.html

    var u1 = 1.0&lt;&lt;s != 0           // illegal: 1.0 has type float64, cannot shift
    var u2 = 1&lt;&lt;s != 1.0           // illegal: 1 has type float64, cannot shift
    var v1 float32 = 1&lt;&lt;s          // illegal: 1 has type float32, cannot shift
    var v2 = string(1&lt;&lt;s)          // illegal: 1 is converted to a string, cannot shift
    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)
  4. doc/asm.html

    <code>R0-&gt;16</code>
    <br>
    <code>R0&gt;&gt;16</code>
    <br>
    <code>R0&lt;&lt;16</code>
    <br>
    <code>R0@&gt;16</code>:
    For <code>&lt;&lt;</code>, left shift <code>R0</code> by 16 bits.
    The other codes are <code>-&gt;</code> (arithmetic right shift),
    <code>&gt;&gt;</code> (logical right shift), and
    <code>@&gt;</code> (rotate right).
    </li>
    
    <li>
    <code>R0-&gt;R1</code>
    <br>
    <code>R0&gt;&gt;R1</code>
    <br>
    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)
Back to top