Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for copyOf (0.14 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	POPCNTB R3, R4                  // 7c6400f4
    	POPCNTW R3, R4                  // 7c6402f4
    	POPCNTD R3, R4                  // 7c6403f4
    
    	PASTECC R3, R4                  // 7c23270d
    	COPY R3, R4                     // 7c23260c
    
    	// load-and-reserve
    	LBAR (R4)(R3*1),$1,R5           // 7ca32069
    	LBAR (R4)(R0),$1,R5             // 7ca02069
    	LBAR (R4),$0,R5                 // 7ca02068
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/2-unique.md

    canonicalizing values (like "interning" or "hash-consing").
    
    Any value of comparable type may be canonicalized with the new
    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Apr 24 13:37:36 GMT 2024
    - 579 bytes
    - Viewed (0)
  3. doc/go_spec.html

    As a special case, if the destination's core type is <code>[]byte</code>,
    <code>copy</code> also accepts a source argument with core type
    <a href="#Core_types"><code>bytestring</code></a>.
    This form copies the bytes from the byte slice or string into the byte slice.
    </p>
    
    <pre class="grammar">
    copy(dst, src []T) int
    copy(dst []byte, src string) int
    </pre>
    
    <p>
    Examples:
    </p>
    
    <pre>
    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