Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for plated (2.33 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    // iteration and possibly observe the wrong value of the variable.
    //
    // Note: An iteration variable can only outlive a loop iteration in Go versions <=1.21.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/doc.go

    (3) No need to add "W" suffix: LDARB, LDARH, LDAXRB, LDAXRH, LDTRH, LDXRB, LDXRH.
    
    (4) In Go assembly syntax, NOP is a zero-width pseudo-instruction serves generic purpose, nothing
    related to real ARM64 instruction. NOOP serves for the hardware nop instruction. NOOP is an alias of
    HINT $0.
    
    Examples:
    
    	VMOV V13.B[1], R20      <=>      mov x20, v13.b[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    string values from Go to C and back to Go.
    
    Using //export in a file places a restriction on the preamble:
    since it is copied into two different C output files, it must not
    contain any definitions, only declarations. If a file contains both
    definitions and declarations, then the two output files will produce
    duplicate symbols and the linker will fail. To avoid this, definitions
    must be placed in preambles in other files, or in C source files.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top