Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for StoreRel64 (0.91 sec)

  1. src/internal/runtime/atomic/types_64bit.go

    // precede it, but no operation that precedes it
    // on this thread can be observed to occur after it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint64) StoreRelease(value uint64) {
    	StoreRel64(&u.value, value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_loong64.go

    // NO go:noescape annotation; see atomic_pointer.go.
    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    //go:noescape
    func StoreRel(ptr *uint32, val uint32)
    
    //go:noescape
    func StoreRel64(ptr *uint64, val uint64)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_arm64.go

    // NO go:noescape annotation; see atomic_pointer.go.
    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    //go:noescape
    func StoreRel(ptr *uint32, val uint32)
    
    //go:noescape
    func StoreRel64(ptr *uint64, val uint64)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_mips64x.go

    // NO go:noescape annotation; see atomic_pointer.go.
    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    //go:noescape
    func StoreRel(ptr *uint32, val uint32)
    
    //go:noescape
    func StoreRel64(ptr *uint64, val uint64)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_amd64.go

    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    
    //go:noescape
    func StoreRel(ptr *uint32, val uint32)
    
    //go:noescape
    func StoreRel64(ptr *uint64, val uint64)
    
    //go:noescape
    func StoreReluintptr(ptr *uintptr, val uintptr)
    
    // StorepNoWB performs *ptr = val atomically and without a write
    // barrier.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_s390x.go

    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    //go:nosplit
    //go:noinline
    func StoreRel(ptr *uint32, val uint32) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreRel64(ptr *uint64, val uint64) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreReluintptr(ptr *uintptr, val uintptr) {
    	*ptr = val
    }
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_ppc64x.go

    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    
    //go:noescape
    func StoreRel(ptr *uint32, val uint32)
    
    //go:noescape
    func StoreRel64(ptr *uint64, val uint64)
    
    //go:noescape
    func StoreReluintptr(ptr *uintptr, val uintptr)
    
    // NO go:noescape annotation; see atomic_pointer.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_riscv64.go

    // NO go:noescape annotation; see atomic_pointer.go.
    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    //go:noescape
    func StoreRel(ptr *uint32, val uint32)
    
    //go:noescape
    func StoreRel64(ptr *uint64, val uint64)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_ppc64x.s

    	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
    	BR	·Load64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_wasm.go

    //go:noinline
    func Store(ptr *uint32, val uint32) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreRel(ptr *uint32, val uint32) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreRel64(ptr *uint64, val uint64) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreReluintptr(ptr *uintptr, val uintptr) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top