Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OrInt32 (0.23 sec)

  1. src/sync/atomic/doc.go

    func AndUintptr(addr *uintptr, mask uintptr) (old uintptr)
    
    // OrInt32 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 [Int32.Or] instead.
    func OrInt32(addr *int32, mask int32) (old int32)
    
    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_AndUintptr sync/atomic.AndUintptr
    func abigen_sync_atomic_AndUintptr(addr *uintptr, mask uintptr) (old uintptr)
    
    //go:linkname abigen_sync_atomic_OrInt32 sync/atomic.OrInt32
    func abigen_sync_atomic_OrInt32(addr *int32, mask int32) (old int32)
    
    //go:linkname abigen_sync_atomic_OrUint32 sync/atomic.OrUint32
    func abigen_sync_atomic_OrUint32(addr *uint32, mask uint32) (old uint32)
    
    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