Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Loaduintptr (0.25 sec)

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

    	MOVB	R4, ret+24(FP)
    	DBAR
    	RET
    cas64_fail:
    	MOVV	$0, R4
    	JMP	-4(PC)
    
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	JMP	·Cas64(SB)
    
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	JMP	·Cas(SB)
    
    TEXT ·Loaduintptr(SB),  NOSPLIT|NOFRAME, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Loaduint(SB), NOSPLIT|NOFRAME, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Storeuintptr(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·Xadduintptr(SB), NOSPLIT, $0-24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_386.s

    	JMP	·Cas(SB)
    
    TEXT ·Casint64(SB), NOSPLIT, $0-21
    	JMP	·Cas64(SB)
    
    TEXT ·Casuintptr(SB), NOSPLIT, $0-13
    	JMP	·Cas(SB)
    
    TEXT ·CasRel(SB), NOSPLIT, $0-13
    	JMP	·Cas(SB)
    
    TEXT ·Loaduintptr(SB), NOSPLIT, $0-8
    	JMP	·Load(SB)
    
    TEXT ·Loaduint(SB), NOSPLIT, $0-8
    	JMP	·Load(SB)
    
    TEXT ·Storeint32(SB), NOSPLIT, $0-8
    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB), NOSPLIT, $0-12
    	JMP	·Store64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_mips64x.s

    	JMP	·Cas(SB)
    
    TEXT ·Casint64(SB), NOSPLIT, $0-25
    	JMP	·Cas64(SB)
    
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	JMP	·Cas64(SB)
    
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	JMP	·Cas(SB)
    
    TEXT ·Loaduintptr(SB),  NOSPLIT|NOFRAME, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Loaduint(SB), NOSPLIT|NOFRAME, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Storeint32(SB), NOSPLIT, $0-12
    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB), NOSPLIT, $0-16
    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/sync/atomic/type.go

    // A Uintptr is an atomic uintptr. The zero value is zero.
    type Uintptr struct {
    	_ noCopy
    	v uintptr
    }
    
    // Load atomically loads and returns the value stored in x.
    func (x *Uintptr) Load() uintptr { return LoadUintptr(&x.v) }
    
    // Store atomically stores val into x.
    func (x *Uintptr) Store(val uintptr) { StoreUintptr(&x.v, val) }
    
    // Swap atomically stores new into x and returns the previous value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/sync/pool.go

    			return x
    		}
    	}
    
    	// Try the victim cache. We do this after attempting to steal
    	// from all primary caches because we want objects in the
    	// victim cache to age out if at all possible.
    	size = atomic.LoadUintptr(&p.victimSize)
    	if uintptr(pid) >= size {
    		return nil
    	}
    	locals = p.victim
    	l := indexLocal(locals, pid)
    	if x := l.private; x != nil {
    		l.private = nil
    		return x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_arm64.s

    	B	·Cas64(SB)
    
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	B	·Cas(SB)
    
    TEXT ·Loadint32(SB), NOSPLIT, $0-12
    	B	·Load(SB)
    
    TEXT ·Loadint64(SB), NOSPLIT, $0-16
    	B	·Load64(SB)
    
    TEXT ·Loaduintptr(SB), NOSPLIT, $0-16
    	B	·Load64(SB)
    
    TEXT ·Loaduint(SB), NOSPLIT, $0-16
    	B	·Load64(SB)
    
    TEXT ·Storeint32(SB), NOSPLIT, $0-12
    	B	·Store(SB)
    
    TEXT ·Storeint64(SB), NOSPLIT, $0-16
    	B	·Store64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_ppc64x.s

    	RET
    
    TEXT ·Casint32(SB), NOSPLIT, $0-17
    	BR	·Cas(SB)
    
    TEXT ·Casint64(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    TEXT ·Loaduintptr(SB),  NOSPLIT|NOFRAME, $0-16
    	BR	·Load64(SB)
    
    TEXT ·LoadAcquintptr(SB),  NOSPLIT|NOFRAME, $0-16
    	BR	·LoadAcq64(SB)
    
    TEXT ·Loaduint(SB), NOSPLIT|NOFRAME, $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)
Back to top