Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for StoreReluintptr (0.13 sec)

  1. src/internal/runtime/atomic/atomic_ppc64x.s

    TEXT ·Storeint32(SB), NOSPLIT, $0-12
    	BR	·Store(SB)
    
    TEXT ·Storeint64(SB), NOSPLIT, $0-16
    	BR	·Store64(SB)
    
    TEXT ·Storeuintptr(SB), NOSPLIT, $0-16
    	BR	·Store64(SB)
    
    TEXT ·StoreReluintptr(SB), NOSPLIT, $0-16
    	BR	·StoreRel64(SB)
    
    TEXT ·Xadduintptr(SB), NOSPLIT, $0-24
    	BR	·Xadd64(SB)
    
    TEXT ·Loadint32(SB), NOSPLIT, $0-12
    	BR	·Load(SB)
    
    TEXT ·Loadint64(SB), NOSPLIT, $0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/types.go

    // on this thread can be observed to occur after it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uintptr) StoreRelease(value uintptr) {
    	StoreReluintptr(&u.value, value)
    }
    
    // CompareAndSwap atomically compares u's value with old,
    // and if they're equal, swaps u's value with new.
    // It reports whether the swap ran.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	alias("internal/runtime/atomic", "StoreReluintptr", "internal/runtime/atomic", "StoreRel", p4...)
    	alias("sync", "runtime_StoreReluintptr", "internal/runtime/atomic", "StoreRel", p4...) // linknamed
    	alias("internal/runtime/atomic", "StoreReluintptr", "internal/runtime/atomic", "StoreRel64", p8...)
    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