Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for StoreRel (0.19 sec)

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

    //go:noescape
    func Store64(ptr *uint64, val uint64)
    
    // 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_386.go

    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //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 StoreReluintptr(ptr *uintptr, val uintptr)
    
    // NO go:noescape annotation; see atomic_pointer.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_mipsx.go

    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    // 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 StoreReluintptr(ptr *uintptr, val uintptr)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_arm.go

    }
    
    // Not noescape -- it installs a pointer to addr.
    func StorepNoWB(addr unsafe.Pointer, v unsafe.Pointer)
    
    //go:noescape
    func Store(addr *uint32, v uint32)
    
    //go:noescape
    func StoreRel(addr *uint32, v uint32)
    
    //go:noescape
    func StoreReluintptr(addr *uintptr, v uintptr)
    
    //go:nosplit
    func goCas64(addr *uint64, old, new uint64) bool {
    	if uintptr(unsafe.Pointer(addr))&7 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_wasm.go

    		*ptr = new
    		return true
    	}
    	return false
    }
    
    //go:nosplit
    //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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_mipsx.s

    	JMP	·Xchg(SB)
    
    TEXT ·Xchgint64(SB),NOSPLIT,$0-20
    	JMP	·Xchg64(SB)
    
    TEXT ·Xchguintptr(SB),NOSPLIT,$0-12
    	JMP	·Xchg(SB)
    
    TEXT ·StorepNoWB(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    TEXT ·StoreRel(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    TEXT ·StoreReluintptr(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    // void	Or8(byte volatile*, byte);
    TEXT ·Or8(SB),NOSPLIT,$0-5
    	MOVW	ptr+0(FP), R1
    	MOVBU	val+4(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_mips64x.s

    	JMP	·Xchg(SB)
    
    TEXT ·Xchgint64(SB), NOSPLIT, $0-24
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	}
    
    retry:
    	h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with consumers
    	t := pp.runqtail
    	if t-h < uint32(len(pp.runq)) {
    		pp.runq[t%uint32(len(pp.runq))].set(gp)
    		atomic.StoreRel(&pp.runqtail, t+1) // store-release, makes the item available for consumption
    		return
    	}
    	if runqputslow(pp, gp, h, t) {
    		return
    	}
    	// the queue is not full, now the put above must succeed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

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