Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Anduintptr (0.14 sec)

  1. src/sync/atomic/doc.go

    func AndUint64(addr *uint64, mask uint64) (old uint64)
    
    // AndUintptr atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Uintptr.And] instead.
    func AndUintptr(addr *uintptr, mask uintptr) (old uintptr)
    
    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/cmd/compile/internal/ssagen/ssa.go

    	alias("sync/atomic", "AddUint32", "internal/runtime/atomic", "Xadd", all...)
    	alias("sync/atomic", "AddUint64", "internal/runtime/atomic", "Xadd64", all...)
    	alias("sync/atomic", "AddUintptr", "internal/runtime/atomic", "Xadd", p4...)
    	alias("sync/atomic", "AddUintptr", "internal/runtime/atomic", "Xadd64", p8...)
    
    	alias("sync/atomic", "AndInt32", "internal/runtime/atomic", "And32", sys.ArchARM64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top