Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Swap (0.21 sec)

  1. api/go1.19.txt

    pkg sync/atomic, method (*Bool) Store(bool) #50860
    pkg sync/atomic, method (*Bool) Swap(bool) bool #50860
    pkg sync/atomic, method (*Int32) Add(int32) int32 #50860
    pkg sync/atomic, method (*Int32) CompareAndSwap(int32, int32) bool #50860
    pkg sync/atomic, method (*Int32) Load() int32 #50860
    pkg sync/atomic, method (*Int32) Store(int32) #50860
    pkg sync/atomic, method (*Int32) Swap(int32) int32 #50860
    pkg sync/atomic, method (*Int64) Add(int64) int64 #50860
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  2. api/go1.17.txt

    pkg runtime/cgo (openbsd-amd64-cgo), type Handle uintptr
    pkg strconv, func QuotedPrefix(string) (string, error)
    pkg sync/atomic, method (*Value) CompareAndSwap(interface{}, interface{}) bool
    pkg sync/atomic, method (*Value) Swap(interface{}) interface{}
    pkg syscall (netbsd-386), const SYS_WAIT6 = 481
    pkg syscall (netbsd-386), const SYS_WAIT6 ideal-int
    pkg syscall (netbsd-386), const WEXITED = 32
    pkg syscall (netbsd-386), const WEXITED ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
  3. api/go1.15.txt

    pkg debug/pe, const IMAGE_FILE_NET_RUN_FROM_SWAP = 2048
    pkg debug/pe, const IMAGE_FILE_NET_RUN_FROM_SWAP ideal-int
    pkg debug/pe, const IMAGE_FILE_RELOCS_STRIPPED = 1
    pkg debug/pe, const IMAGE_FILE_RELOCS_STRIPPED ideal-int
    pkg debug/pe, const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = 1024
    pkg debug/pe, const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP ideal-int
    pkg debug/pe, const IMAGE_FILE_SYSTEM = 4096
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Jul 17 02:15:01 GMT 2020
    - 7.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/parse.go

    			// was AX:DX, for which the new syntax is DX, AX. Note the reordering.
    			if tok == '\n' || tok == ';' || (nesting == 0 && (tok == ',' || tok == ':')) {
    				if tok == ':' {
    					// Remember this location so we can swap the operands below.
    					if colon >= 0 {
    						p.errorf("invalid ':' in operand")
    						return word, cond, operands, true
    					}
    					colon = len(operands)
    				}
    				break
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  5. doc/go_spec.html

    corresponding type parameters have corresponding constraints.
    </p>
    
    <pre>
    type Pair[A, B any] struct {
    	a A
    	b B
    }
    
    func (p Pair[A, B]) Swap() Pair[B, A]  { … }  // receiver declares A, B
    func (p Pair[First, _]) First() First  { … }  // receiver declares First, corresponds to A in Pair
    </pre>
    
    <h2 id="Expressions">Expressions</h2>
    
    <p>
    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)
  6. src/cmd/asm/internal/asm/testdata/arm.s

    //		g.Offset = int64($4);
    //		outcode($1, $2, &g, 0, &$7);
    //	}
    	MOVM	[R2,R5,R8,g], 0(R1) // MOVM	[R2,R5,R8,g], (R1)
    	MOVM	[R2-R5], (R1) // MOVM [R2,R3,R4,R5], (R1)
    	MOVM	[R2], (R1)
    
    //
    // SWAP
    //
    //	LTYPE9 cond reg ',' ireg ',' reg
    //	{
    //		outcode($1, $2, &$5, int32($3.Reg), &$7);
    //	}
    	STREX	R1, (R2), R3 // STREX (R2), R1, R3
    
    //
    // word
    //
    //	LTYPEH comma ximm
    //	{
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg sort, method (StringSlice) Sort()
    pkg sort, method (StringSlice) Swap(int, int)
    pkg sort, type Float64Slice []float64
    pkg sort, type IntSlice []int
    pkg sort, type Interface interface { Len, Less, Swap }
    pkg sort, type Interface interface, Len() int
    pkg sort, type Interface interface, Less(int, int) bool
    pkg sort, type Interface interface, Swap(int, int)
    pkg sort, type StringSlice []string
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. api/go1.20.txt

    pkg sync, method (*Map) CompareAndDelete(interface{}, interface{}) bool #51972
    pkg sync, method (*Map) CompareAndSwap(interface{}, interface{}, interface{}) bool #51972
    pkg sync, method (*Map) Swap(interface{}, interface{}) (interface{}, bool) #51972
    pkg syscall (freebsd-386-cgo), const SYS_FSTAT = 551 #53280
    pkg syscall (freebsd-386-cgo), const SYS_FSTATAT = 552 #53280
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. doc/go_mem.html

    Other memory operations are <i>write-like</i>, including write, atomic write, mutex unlock, channel send, and channel close.
    Some, such as atomic compare-and-swap, are both read-like and write-like.
    </p>
    
    <p>
    A <i>goroutine execution</i> is modeled as a set of memory operations executed by a single goroutine.
    </p>
    
    <p>
    <b>Requirement 1</b>:
    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)
Back to top