type go.uber.org/atomic.Uintptr

15 uses

	go.uber.org/atomic (current package)
		uintptr.go#L32: type Uintptr struct {
		uintptr.go#L39: func NewUintptr(val uintptr) *Uintptr {
		uintptr.go#L40: 	return &Uintptr{v: val}
		uintptr.go#L44: func (i *Uintptr) Load() uintptr {
		uintptr.go#L49: func (i *Uintptr) Add(delta uintptr) uintptr {
		uintptr.go#L54: func (i *Uintptr) Sub(delta uintptr) uintptr {
		uintptr.go#L59: func (i *Uintptr) Inc() uintptr {
		uintptr.go#L64: func (i *Uintptr) Dec() uintptr {
		uintptr.go#L71: func (i *Uintptr) CAS(old, new uintptr) (swapped bool) {
		uintptr.go#L76: func (i *Uintptr) CompareAndSwap(old, new uintptr) (swapped bool) {
		uintptr.go#L81: func (i *Uintptr) Store(val uintptr) {
		uintptr.go#L86: func (i *Uintptr) Swap(val uintptr) (old uintptr) {
		uintptr.go#L91: func (i *Uintptr) MarshalJSON() ([]byte, error) {
		uintptr.go#L96: func (i *Uintptr) UnmarshalJSON(b []byte) error {
		uintptr.go#L106: func (i *Uintptr) String() string {