Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StoreRel64 (0.18 sec)

  1. 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)
  2. 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)
  3. src/internal/runtime/atomic/atomic_mips64x.s

    	JMP	·Xchg64(SB)
    
    TEXT ·Xchguintptr(SB), NOSPLIT, $0-24
    	JMP	·Xchg64(SB)
    
    TEXT ·StorepNoWB(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·StoreRel(SB), NOSPLIT, $0-12
    	JMP	·Store(SB)
    
    TEXT ·StoreRel64(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·StoreReluintptr(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·Store(SB), NOSPLIT, $0-12
    	MOVV	ptr+0(FP), R1
    	MOVW	val+8(FP), R2
    	SYNC
    	MOVW	R2, 0(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	alias("internal/runtime/atomic", "StoreRel64", "internal/runtime/atomic", "Store64", lwatomics...)
    	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