Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AndUint32 (0.16 sec)

  1. src/sync/atomic/asm.s

    TEXT ·StoreUint64(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Store64(SB)
    
    TEXT ·StoreUintptr(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Storeuintptr(SB)
    
    TEXT ·AndInt32(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·And32(SB)
    
    TEXT ·AndUint32(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·And32(SB)
    
    TEXT ·AndUintptr(SB),NOSPLIT,$0
    	JMP	internal∕runtime∕atomic·Anduintptr(SB)
    
    TEXT ·AndInt64(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. api/go1.23.txt

    pkg structs, type HostLayout struct #66408
    pkg sync, method (*Map) Clear() #61696
    pkg sync/atomic, func AndInt32(*int32, int32) int32 #61395
    pkg sync/atomic, func AndInt64(*int64, int64) int64 #61395
    pkg sync/atomic, func AndUint32(*uint32, uint32) uint32 #61395
    pkg sync/atomic, func AndUint64(*uint64, uint64) uint64 #61395
    pkg sync/atomic, func AndUintptr(*uintptr, uintptr) uintptr #61395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/sync/atomic/type.go

    // And atomically performs a bitwise AND operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Uint32) And(mask uint32) (old uint32) { return AndUint32(&x.v, mask) }
    
    // Or atomically performs a bitwise OR operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Uint32) Or(mask uint32) (new uint32) { return OrUint32(&x.v, mask) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top