Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OrInt64 (0.08 sec)

  1. src/sync/atomic/doc.go

    func OrUint32(addr *uint32, mask uint32) (old uint32)
    
    // OrInt64 atomically performs a bitwise OR operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Int64.Or] instead.
    func OrInt64(addr *int64, mask int64) (old int64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/runtime/race.go

    //go:linkname abigen_sync_atomic_OrUint32 sync/atomic.OrUint32
    func abigen_sync_atomic_OrUint32(addr *uint32, mask uint32) (old uint32)
    
    //go:linkname abigen_sync_atomic_OrInt64 sync/atomic.OrInt64
    func abigen_sync_atomic_OrInt64(addr *int64, mask int64) (old int64)
    
    //go:linkname abigen_sync_atomic_OrUint64 sync/atomic.OrUint64
    func abigen_sync_atomic_OrUint64(addr *uint64, mask uint64) (old uint64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top