type unsafe.Pointer
2347 uses
unsafe (current package)
unsafe.go#L184: type Pointer *ArbitraryType
crypto/internal/alias
alias.go#L15: uintptr(unsafe.Pointer(&x[0])) <= uintptr(unsafe.Pointer(&y[len(y)-1])) &&
alias.go#L16: uintptr(unsafe.Pointer(&y[0])) <= uintptr(unsafe.Pointer(&x[len(x)-1]))
crypto/internal/nistec
p256_asm.go#L326: p256PrecomputedPtr := (*unsafe.Pointer)(unsafe.Pointer(&p256PrecomputedEmbed))
p256_asm.go#L332: newTablePtr := unsafe.Pointer(&newTable)
github.com/segmentio/asm/internal/unsafebytes
unsafebytes.go#L6: return *(**byte)(unsafe.Pointer(&b))
unsafebytes.go#L10: return *(*string)(unsafe.Pointer(&b))
unsafebytes.go#L14: return *(*[]byte)(unsafe.Pointer(&sliceHeader{str: s, cap: len(s)}))
go.opentelemetry.io/otel/internal
rawhelpers.go#L50: return (*float64)(unsafe.Pointer(r))
rawhelpers.go#L54: return (*int64)(unsafe.Pointer(r))
go.uber.org/atomic
unsafe_pointer.go#L32: v unsafe.Pointer
unsafe_pointer.go#L36: func NewUnsafePointer(val unsafe.Pointer) *UnsafePointer {
unsafe_pointer.go#L41: func (p *UnsafePointer) Load() unsafe.Pointer {
unsafe_pointer.go#L46: func (p *UnsafePointer) Store(val unsafe.Pointer) {
unsafe_pointer.go#L51: func (p *UnsafePointer) Swap(val unsafe.Pointer) (old unsafe.Pointer) {
unsafe_pointer.go#L58: func (p *UnsafePointer) CAS(old, new unsafe.Pointer) (swapped bool) {
unsafe_pointer.go#L63: func (p *UnsafePointer) CompareAndSwap(old, new unsafe.Pointer) (swapped bool) {
hash/crc32
crc32_amd64.go#L153: delta := int(uintptr(unsafe.Pointer(&p[0])) & 7)
internal/abi
abi.go#L38: Ptrs [IntArgRegs]unsafe.Pointer
abi.go#L74: func (r *RegArgs) IntRegArgAddr(reg int, argSize uintptr) unsafe.Pointer {
abi.go#L82: return unsafe.Pointer(uintptr(unsafe.Pointer(&r.Ints[reg])) + offset)
type.go#L30: Equal func(unsafe.Pointer, unsafe.Pointer) bool
type.go#L209: return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.mcount > 0"))[:t.Mcount:t.Mcount]
type.go#L216: return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.xcount > 0"))[:t.Xcount:t.Xcount]
type.go#L226: func addChecked(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
type.go#L227: return unsafe.Pointer(uintptr(p) + x)
type.go#L247: return int((*ArrayType)(unsafe.Pointer(t)).Len)
type.go#L280: ch := (*ChanType)(unsafe.Pointer(t))
type.go#L293: return &(*structTypeUncommon)(unsafe.Pointer(t)).u
type.go#L299: return &(*u)(unsafe.Pointer(t)).u
type.go#L305: return &(*u)(unsafe.Pointer(t)).u
type.go#L311: return &(*u)(unsafe.Pointer(t)).u
type.go#L317: return &(*u)(unsafe.Pointer(t)).u
type.go#L323: return &(*u)(unsafe.Pointer(t)).u
type.go#L329: return &(*u)(unsafe.Pointer(t)).u
type.go#L335: return &(*u)(unsafe.Pointer(t)).u
type.go#L341: return &(*u)(unsafe.Pointer(t)).u
type.go#L349: tt := (*ArrayType)(unsafe.Pointer(t))
type.go#L352: tt := (*ChanType)(unsafe.Pointer(t))
type.go#L355: tt := (*MapType)(unsafe.Pointer(t))
type.go#L358: tt := (*PtrType)(unsafe.Pointer(t))
type.go#L361: tt := (*SliceType)(unsafe.Pointer(t))
type.go#L372: return (*StructType)(unsafe.Pointer(t))
type.go#L380: return (*MapType)(unsafe.Pointer(t))
type.go#L388: return (*ArrayType)(unsafe.Pointer(t))
type.go#L396: return (*FuncType)(unsafe.Pointer(t))
type.go#L404: return (*InterfaceType)(unsafe.Pointer(t))
type.go#L431: tt := (*InterfaceType)(unsafe.Pointer(t))
type.go#L446: Hasher func(unsafe.Pointer, uintptr) uintptr
type.go#L473: return (*MapType)(unsafe.Pointer(t)).Key
type.go#L524: return (*[1 << 16]*Type)(addChecked(unsafe.Pointer(t), uadd, "t.inCount > 0"))[:t.InCount:t.InCount]
type.go#L535: return (*[1 << 17]*Type)(addChecked(unsafe.Pointer(t), uadd, "outCount > 0"))[t.InCount : t.InCount+outCount : t.InCount+outCount]
type.go#L596: return (*byte)(addChecked(unsafe.Pointer(n.Bytes), uintptr(off), whySafe))
type.go#L602: return (*byte)(addChecked(unsafe.Pointer(n.Bytes), uintptr(off), "the runtime doesn't need to give you a reason"))
internal/bisect
bisect.go#L321: p unsafe.Pointer
bisect.go#L329: return atomic.CompareAndSwapPointer(&p.p, unsafe.Pointer(old), unsafe.Pointer(new))
internal/bytealg
equal_native.go#L18: func abigen_runtime_memequal(a, b unsafe.Pointer, size uintptr) bool
equal_native.go#L21: func abigen_runtime_memequal_varlen(a, b unsafe.Pointer) bool
internal/godebug
godebug.go#L281: write(2, unsafe.Pointer(&b[0]), int32(len(b)))
godebug.go#L290: func write(fd uintptr, p unsafe.Pointer, n int32) int32
internal/intern
intern.go#L108: v = (*Value)(unsafe.Pointer(addr))
intern.go#L121: valMap[k] = uintptr(unsafe.Pointer(v))
internal/poll
fd_writev_unix.go#L20: r, _, e = syscall.Syscall(syscall.SYS_WRITEV, uintptr(fd), uintptr(unsafe.Pointer(&iovecs[0])), uintptr(len(iovecs)))
internal/race
norace.go#L16: func Acquire(addr unsafe.Pointer) {
norace.go#L19: func Release(addr unsafe.Pointer) {
norace.go#L22: func ReleaseMerge(addr unsafe.Pointer) {
norace.go#L31: func Read(addr unsafe.Pointer) {
norace.go#L34: func Write(addr unsafe.Pointer) {
norace.go#L37: func ReadRange(addr unsafe.Pointer, len int) {
norace.go#L40: func WriteRange(addr unsafe.Pointer, len int) {
internal/reflectlite
swapper.go#L41: ps := *(*[]unsafe.Pointer)(v.ptr)
type.go#L121: Hasher func(unsafe.Pointer, uintptr) uintptr
type.go#L165: return (*byte)(add(unsafe.Pointer(n.bytes), uintptr(off), whySafe))
type.go#L223: copy((*[4]byte)(unsafe.Pointer(&nameOff))[:], (*[4]byte)(unsafe.Pointer(n.DataChecked(off, "name offset field")))[:])
type.go#L224: pkgPathName := name{(*byte)(resolveTypeOff(unsafe.Pointer(n.Bytes), nameOff))}
type.go#L236: func resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer
type.go#L241: func resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer
type.go#L244: return abi.Name{Bytes: (*byte)(resolveNameOff(unsafe.Pointer(t.Type), int32(off)))}
type.go#L248: return (*abi.Type)(resolveTypeOff(unsafe.Pointer(t.Type), int32(off)))
type.go#L390: func add(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
type.go#L391: return unsafe.Pointer(uintptr(p) + x)
type.go#L397: eface := *(*emptyInterface)(unsafe.Pointer(&i))
type.go#L449: v := (*interfaceType)(unsafe.Pointer(V))
type.go#L577: t := (*funcType)(unsafe.Pointer(T))
type.go#L578: v := (*funcType)(unsafe.Pointer(V))
type.go#L595: t := (*interfaceType)(unsafe.Pointer(T))
type.go#L596: v := (*interfaceType)(unsafe.Pointer(V))
type.go#L611: t := (*structType)(unsafe.Pointer(T))
type.go#L612: v := (*structType)(unsafe.Pointer(V))
value.go#L42: ptr unsafe.Pointer
value.go#L92: func (v Value) pointer() unsafe.Pointer {
value.go#L97: return *(*unsafe.Pointer)(v.ptr)
value.go#L106: e := (*emptyInterface)(unsafe.Pointer(&i))
value.go#L126: e.word = *(*unsafe.Pointer)(v.ptr)
value.go#L141: e := (*emptyInterface)(unsafe.Pointer(&i))
value.go#L183: word unsafe.Pointer
value.go#L246: ptr = *(*unsafe.Pointer)(ptr)
value.go#L252: tt := (*ptrType)(unsafe.Pointer(v.typ))
value.go#L298: ptr = *(*unsafe.Pointer)(ptr)
value.go#L304: return *(*unsafe.Pointer)(v.ptr) == nil
value.go#L325: func chanlen(unsafe.Pointer) int
value.go#L326: func maplen(unsafe.Pointer) int
value.go#L334: tt := (*arrayType)(unsafe.Pointer(v.typ))
value.go#L364: var target unsafe.Pointer
value.go#L372: *(*unsafe.Pointer)(v.ptr) = x.ptr
value.go#L391: func unsafe_New(*abi.Type) unsafe.Pointer
value.go#L412: func (v Value) assignTo(context string, dst *abi.Type, target unsafe.Pointer) Value {
value.go#L455: func arrayAt(p unsafe.Pointer, i int, eltSize uintptr, whySafe string) unsafe.Pointer {
value.go#L459: func ifaceE2I(t *abi.Type, src any, dst unsafe.Pointer)
value.go#L464: func typedmemmove(t *abi.Type, dst, src unsafe.Pointer)
internal/syscall/unix
at.go#L20: _, _, errno := syscall.Syscall(unlinkatTrap, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags))
at.go#L34: fd, _, errno := syscall.Syscall6(openatTrap, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags), uintptr(perm), 0, 0)
at_fstatat.go#L21: _, _, errno := syscall.Syscall6(fstatatTrap, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)
copy_file_range_linux.go#L15: uintptr(unsafe.Pointer(roff)),
copy_file_range_linux.go#L17: uintptr(unsafe.Pointer(woff)),
getrandom.go#L29: uintptr(unsafe.Pointer(&p[0])),
internal/unsafeheader
unsafeheader.go#L23: Data unsafe.Pointer
unsafeheader.go#L35: Data unsafe.Pointer
math
unsafe.go#L12: func Float32bits(f float32) uint32 { return *(*uint32)(unsafe.Pointer(&f)) }
unsafe.go#L18: func Float32frombits(b uint32) float32 { return *(*float32)(unsafe.Pointer(&b)) }
unsafe.go#L23: func Float64bits(f float64) uint64 { return *(*uint64)(unsafe.Pointer(&f)) }
unsafe.go#L29: func Float64frombits(b uint64) float64 { return *(*float64)(unsafe.Pointer(&b)) }
net
cgo_unix.go#L115: gerrno, err := _C_getaddrinfo(nil, (*_C_char)(unsafe.Pointer(&cservice[0])), hints, &res)
cgo_unix.go#L134: sa := (*syscall.RawSockaddrInet4)(unsafe.Pointer(*_C_ai_addr(r)))
cgo_unix.go#L135: p := (*[2]byte)(unsafe.Pointer(&sa.Port))
cgo_unix.go#L138: sa := (*syscall.RawSockaddrInet6)(unsafe.Pointer(*_C_ai_addr(r)))
cgo_unix.go#L139: p := (*[2]byte)(unsafe.Pointer(&sa.Port))
cgo_unix.go#L166: gerrno, err := _C_getaddrinfo((*_C_char)(unsafe.Pointer(h)), nil, &hints, &res)
cgo_unix.go#L201: sa := (*syscall.RawSockaddrInet4)(unsafe.Pointer(*_C_ai_addr(r)))
cgo_unix.go#L205: sa := (*syscall.RawSockaddrInet6)(unsafe.Pointer(*_C_ai_addr(r)))
cgo_unix.go#L321: defer _C_free(unsafe.Pointer(state))
cgo_unix.go#L337: defer _C_free(unsafe.Pointer(buf))
cgo_unix.go#L346: size, _ = _C_res_nsearch(state, (*_C_char)(unsafe.Pointer(s)), class, rtype, buf, bufSize)
cgo_unix.go#L355: _C_free(unsafe.Pointer(buf))
cgo_unix.go#L361: if _, err := p.Start(unsafe.Slice((*byte)(unsafe.Pointer(buf)), size)); err != nil {
interface_linux.go#L32: ifim := (*syscall.IfInfomsg)(unsafe.Pointer(&m.Data[0]))
interface_linux.go#L91: ifi.MTU = int(*(*uint32)(unsafe.Pointer(&a.Value[:4][0])))
interface_linux.go#L155: ifam := (*syscall.IfAddrmsg)(unsafe.Pointer(&m.Data[0]))
interface_linux.go#L241: i := *(*uint32)(unsafe.Pointer(&b[:4][0]))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L16: func _Cgo_ptr(ptr unsafe.Pointer) unsafe.Pointer { return ptr }
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L69: func _cgo_runtime_cgocall(unsafe.Pointer, uintptr) int32
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L96: var _cgo_9c8efe9babca_C2func_getaddrinfo = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_C2func_getaddrinfo)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L100: errno := _cgo_runtime_cgocall(_cgo_9c8efe9babca_C2func_getaddrinfo, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L113: var _cgo_9c8efe9babca_C2func_getnameinfo = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_C2func_getnameinfo)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L117: errno := _cgo_runtime_cgocall(_cgo_9c8efe9babca_C2func_getnameinfo, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L133: var _cgo_9c8efe9babca_C2func_res_search = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_C2func_res_search)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L137: errno := _cgo_runtime_cgocall(_cgo_9c8efe9babca_C2func_res_search, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L157: func _Cfunc__CMalloc(n _Ctype_size_t) unsafe.Pointer {
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L163: var _cgo_9c8efe9babca_Cfunc_free = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_Cfunc_free)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L166: func _Cfunc_free(p0 unsafe.Pointer) (r1 _Ctype_void) {
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L167: _cgo_runtime_cgocall(_cgo_9c8efe9babca_Cfunc_free, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L176: var _cgo_9c8efe9babca_Cfunc_freeaddrinfo = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_Cfunc_freeaddrinfo)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L180: _cgo_runtime_cgocall(_cgo_9c8efe9babca_Cfunc_freeaddrinfo, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L189: var _cgo_9c8efe9babca_Cfunc_gai_strerror = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_Cfunc_gai_strerror)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L193: _cgo_runtime_cgocall(_cgo_9c8efe9babca_Cfunc_gai_strerror, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L202: var _cgo_9c8efe9babca_Cfunc_getaddrinfo = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_Cfunc_getaddrinfo)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L206: _cgo_runtime_cgocall(_cgo_9c8efe9babca_Cfunc_getaddrinfo, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L218: var _cgo_9c8efe9babca_Cfunc_getnameinfo = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_Cfunc_getnameinfo)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L222: _cgo_runtime_cgocall(_cgo_9c8efe9babca_Cfunc_getnameinfo, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L237: var _cgo_9c8efe9babca_Cfunc_res_search = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_Cfunc_res_search)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L241: _cgo_runtime_cgocall(_cgo_9c8efe9babca_Cfunc_res_search, uintptr(unsafe.Pointer(&p0)))
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L255: var _cgo_9c8efe9babca_Cfunc__Cmalloc = unsafe.Pointer(&__cgofn__cgo_9c8efe9babca_Cfunc__Cmalloc)
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L261: func _cgo_cmalloc(p0 uint64) (r1 unsafe.Pointer) {
5ae736dd724f6c821ec8edfe517213cda583d16b7df419bad445bf6564b478b5-d#L262: _cgo_runtime_cgocall(_cgo_9c8efe9babca_Cfunc__Cmalloc, uintptr(unsafe.Pointer(&p0)))
cgo_resnew.go#L23: gerrno, err := ( /*line :20:17*/_C2func_getnameinfo /*line :20:29*/)(sa, salen, (* /*line :20:44*/_Ctype_char /*line :20:50*/)(unsafe.Pointer(&b[0])), /*line :20:76*/_Ctype_socklen_t /*line :20:87*/(len(b)), nil, 0, ( /*line :20:105*/_Ciconst_NI_NAMEREQD /*line :20:117*/))
cgo_socknew.go#L28: return (* /*line :25:11*/_Ctype_struct_sockaddr /*line :25:28*/)(unsafe.Pointer(&sa))
cgo_socknew.go#L34: return (* /*line :31:11*/_Ctype_struct_sockaddr /*line :31:28*/)(unsafe.Pointer(&sa))
cgo_unix_cgo.go#L62: func _C_malloc(n uintptr) unsafe.Pointer { return ( /*line :59:51*/_Cfunc__CMalloc /*line :59:58*/)( /*line :59:60*/_Ctype_size_t /*line :59:68*/(n)) }
cgo_unix_cgo.go#L63: func _C_free(p unsafe.Pointer) { func() { _cgo0 := /*line :60:51*/p; _cgoCheckPointer(_cgo0, nil); /*line :60:53*/_Cfunc_free(_cgo0); }() }
os
wait_waitid.go#L32: _, _, e = syscall.Syscall6(syscall.SYS_WAITID, _P_PID, uintptr(p.Pid), uintptr(unsafe.Pointer(psig)), syscall.WEXITED|syscall.WNOWAIT, 0, 0)
reflect
abi.go#L224: tt := (*arrayType)(unsafe.Pointer(t))
abi.go#L237: st := (*structType)(unsafe.Pointer(t))
abi.go#L473: func intFromReg(r *abi.RegArgs, reg int, argSize uintptr, to unsafe.Pointer) {
abi.go#L480: func intToReg(r *abi.RegArgs, reg int, argSize uintptr, from unsafe.Pointer) {
abi.go#L487: func floatFromReg(r *abi.RegArgs, reg int, argSize uintptr, to unsafe.Pointer) {
abi.go#L492: *(*float64)(to) = *(*float64)(unsafe.Pointer(&r.Floats[reg]))
abi.go#L501: func floatToReg(r *abi.RegArgs, reg int, argSize uintptr, from unsafe.Pointer) {
deepequal.go#L19: a1 unsafe.Pointer
deepequal.go#L20: a2 unsafe.Pointer
deepequal.go#L63: ptrval := func(v Value) unsafe.Pointer {
float32reg_generic.go#L18: return *(*float32)(unsafe.Pointer(&i))
float32reg_generic.go#L22: return uint64(*(*uint32)(unsafe.Pointer(&val)))
makefunc.go#L52: ftyp := (*funcType)(unsafe.Pointer(t))
makefunc.go#L70: return Value{t, unsafe.Pointer(impl), flag(Func)}
makefunc.go#L107: ftyp := (*funcType)(unsafe.Pointer(v.Type().(*rtype)))
makefunc.go#L129: return Value{ftyp.Common(), unsafe.Pointer(fv), v.flag&flagRO | flag(Func)}
makefunc.go#L168: *(*uintptr)(unsafe.Pointer(&args.Ptrs[i])) = arg
makefunc.go#L173: *(*uintptr)(unsafe.Pointer(&args.Ptrs[i])) = 0
swapper.go#L42: ps := *(*[]unsafe.Pointer)(v.ptr)
type.go#L398: copy((*[4]byte)(unsafe.Pointer(&nameOff))[:], (*[4]byte)(unsafe.Pointer(n.DataChecked(off, "name offset field")))[:])
type.go#L399: pkgPathName := abi.Name{Bytes: (*byte)(resolveTypeOff(unsafe.Pointer(n.Bytes), nameOff))}
type.go#L483: func resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer
type.go#L490: func resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer
type.go#L497: func resolveTextOff(rtype unsafe.Pointer, off int32) unsafe.Pointer
type.go#L504: func addReflectOff(ptr unsafe.Pointer) int32
type.go#L509: return aNameOff(addReflectOff(unsafe.Pointer(n.Bytes)))
type.go#L515: return aTypeOff(addReflectOff(unsafe.Pointer(t)))
type.go#L521: func resolveReflectText(ptr unsafe.Pointer) aTextOff {
type.go#L526: return abi.Name{Bytes: (*byte)(resolveNameOff(unsafe.Pointer(t), int32(off)))}
type.go#L530: return (*abi.Type)(resolveTypeOff(unsafe.Pointer(t), int32(off)))
type.go#L533: func (t *rtype) textOff(off aTextOff) unsafe.Pointer {
type.go#L534: return resolveTextOff(unsafe.Pointer(t), int32(off))
type.go#L537: func textOffFor(t *abi.Type, off aTextOff) unsafe.Pointer {
type.go#L578: tt := (*interfaceType)(unsafe.Pointer(t))
type.go#L586: tt := (*interfaceType)(unsafe.Pointer(t))
type.go#L598: ft := (*funcType)(unsafe.Pointer(mtyp))
type.go#L611: fn := unsafe.Pointer(&tfn)
type.go#L620: tt := (*interfaceType)(unsafe.Pointer(t))
type.go#L692: tt := (*abi.ChanType)(unsafe.Pointer(t))
type.go#L697: return (*rtype)(unsafe.Pointer(t))
type.go#L716: tt := (*structType)(unsafe.Pointer(t))
type.go#L724: tt := (*structType)(unsafe.Pointer(t))
type.go#L732: tt := (*structType)(unsafe.Pointer(t))
type.go#L740: tt := (*structType)(unsafe.Pointer(t))
type.go#L748: tt := (*mapType)(unsafe.Pointer(t))
type.go#L756: tt := (*arrayType)(unsafe.Pointer(t))
type.go#L764: tt := (*structType)(unsafe.Pointer(t))
type.go#L772: tt := (*abi.FuncType)(unsafe.Pointer(t))
type.go#L780: tt := (*abi.FuncType)(unsafe.Pointer(t))
type.go#L788: tt := (*abi.FuncType)(unsafe.Pointer(t))
type.go#L796: tt := (*abi.FuncType)(unsafe.Pointer(t))
type.go#L804: tt := (*abi.FuncType)(unsafe.Pointer(t))
type.go#L815: func add(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
type.go#L816: return unsafe.Pointer(uintptr(p) + x)
type.go#L1104: styp := (*structType)(unsafe.Pointer(ntyp))
type.go#L1154: eface := *(*emptyInterface)(unsafe.Pointer(&i))
type.go#L1157: return toType((*abi.Type)(noescape(unsafe.Pointer(eface.typ))))
type.go#L1162: eface := *(*emptyInterface)(unsafe.Pointer(&i))
type.go#L1196: p := (*ptrType)(unsafe.Pointer(tt))
type.go#L1206: var iptr any = (*unsafe.Pointer)(nil)
type.go#L1207: prototype := *(**ptrType)(unsafe.Pointer(&iptr))
type.go#L1272: t := (*interfaceType)(unsafe.Pointer(T))
type.go#L1290: v := (*interfaceType)(unsafe.Pointer(V))
type.go#L1426: t := (*funcType)(unsafe.Pointer(T))
type.go#L1427: v := (*funcType)(unsafe.Pointer(V))
type.go#L1444: t := (*interfaceType)(unsafe.Pointer(T))
type.go#L1445: v := (*interfaceType)(unsafe.Pointer(V))
type.go#L1460: t := (*structType)(unsafe.Pointer(T))
type.go#L1461: v := (*structType)(unsafe.Pointer(V))
type.go#L1512: func typelinks() (sections []unsafe.Pointer, offset [][]int32)
type.go#L1514: func rtypeOff(section unsafe.Pointer, off int32) *abi.Type {
type.go#L1622: ch := (*chanType)(unsafe.Pointer(tt))
type.go#L1630: var ichan any = (chan unsafe.Pointer)(nil)
type.go#L1631: prototype := *(**chanType)(unsafe.Pointer(&ichan))
type.go#L1666: mt := (*mapType)(unsafe.Pointer(tt))
type.go#L1676: var imap any = (map[unsafe.Pointer]unsafe.Pointer)(nil)
type.go#L1677: mt := **(**mapType)(unsafe.Pointer(&imap))
type.go#L1684: mt.Hasher = func(p unsafe.Pointer, seed uintptr) uintptr {
type.go#L1758: prototype := *(**funcType)(unsafe.Pointer(&ifunc))
type.go#L1766: ft := (*funcType)(unsafe.Pointer(o.Field(0).Addr().Pointer()))
type.go#L1767: args := unsafe.Slice((**rtype)(unsafe.Pointer(o.Field(1).Addr().Pointer())), n)[0:0:n]
type.go#L1851: repr = append(repr, stringFor((*sliceType)(unsafe.Pointer(t)).Elem)...)
type.go#L1884: tt := (*arrayType)(unsafe.Pointer(t))
type.go#L1887: tt := (*structType)(unsafe.Pointer(t))
type.go#L1911: tt := (*arrayType)(unsafe.Pointer(t))
type.go#L1914: tt := (*structType)(unsafe.Pointer(t))
type.go#L1933: tt := (*arrayType)(unsafe.Pointer(t))
type.go#L1936: tt := (*structType)(unsafe.Pointer(t))
type.go#L2022: return (*[1 << 30]byte)(unsafe.Pointer(t.t.GCData))[begin:end:end]
type.go#L2049: n := uintptr(*(*uint32)(unsafe.Pointer(typ.GCData)))
type.go#L2084: slice := (*sliceType)(unsafe.Pointer(tt))
type.go#L2092: var islice any = ([]unsafe.Pointer)(nil)
type.go#L2093: prototype := *(**sliceType)(unsafe.Pointer(&islice))
type.go#L2210: ift := (*interfaceType)(unsafe.Pointer(ft))
type.go#L2264: Ifn: resolveReflectText(unsafe.Pointer(&ifn)),
type.go#L2265: Tfn: resolveReflectText(unsafe.Pointer(&tfn)),
type.go#L2269: ptr := (*ptrType)(unsafe.Pointer(ft))
type.go#L2434: prototype := *(**structType)(unsafe.Pointer(&istruct))
type.go#L2528: *(*uint32)(unsafe.Pointer(&prog[0])) = uint32(len(prog) - 4)
type.go#L2541: typ.Equal = func(p, q unsafe.Pointer) bool {
type.go#L2596: st := (*structType)(unsafe.Pointer(t))
type.go#L2640: array := (*arrayType)(unsafe.Pointer(tt))
type.go#L2648: var iarray any = [1]unsafe.Pointer{}
type.go#L2649: prototype := *(**arrayType)(unsafe.Pointer(&iarray))
type.go#L2723: *(*uint32)(unsafe.Pointer(&prog[0])) = uint32(len(prog) - 4)
type.go#L2734: array.Equal = func(p, q unsafe.Pointer) bool {
type.go#L2898: tt := (*arrayType)(unsafe.Pointer(t))
type.go#L2905: tt := (*structType)(unsafe.Pointer(t))
value.go#L46: ptr unsafe.Pointer
value.go#L102: return (*abi.Type)(noescape(unsafe.Pointer(v.typ_)))
value.go#L108: func (v Value) pointer() unsafe.Pointer {
value.go#L113: return *(*unsafe.Pointer)(v.ptr)
value.go#L122: e := (*emptyInterface)(unsafe.Pointer(&i))
value.go#L142: e.word = *(*unsafe.Pointer)(v.ptr)
value.go#L157: e := (*emptyInterface)(unsafe.Pointer(&i))
value.go#L208: word unsafe.Pointer
value.go#L219: fun [100000]unsafe.Pointer // method table
value.go#L221: word unsafe.Pointer
value.go#L334: n := int((*arrayType)(unsafe.Pointer(v.typ())).Len)
value.go#L402: t := (*funcType)(unsafe.Pointer(v.typ()))
value.go#L404: fn unsafe.Pointer
value.go#L412: fn = *(*unsafe.Pointer)(v.ptr)
value.go#L486: var stackArgs unsafe.Pointer
value.go#L489: stackArgs = framePool.Get().(unsafe.Pointer)
value.go#L515: storeRcvr(rcvr, unsafe.Pointer(®Args.Ptrs[st.ireg]))
value.go#L518: storeRcvr(rcvr, unsafe.Pointer(®Args.Ints[st.ireg]))
value.go#L520: storeRcvr(rcvr, unsafe.Pointer(®Args.Floats[st.freg]))
value.go#L544: *(*unsafe.Pointer)(addr) = v.ptr
value.go#L556: regArgs.Ptrs[st.ireg] = *(*unsafe.Pointer)(offset)
value.go#L670: *((*unsafe.Pointer)(s)) = regArgs.Ptrs[st.ireg]
value.go#L707: func callReflect(ctxt *makeFuncImpl, frame unsafe.Pointer, retValid *bool, regs *abi.RegArgs) {
value.go#L743: v.ptr = *(*unsafe.Pointer)(add(ptr, st.stkOff, "1-ptr"))
value.go#L758: *((*unsafe.Pointer)(s)) = regs.Ptrs[st.ireg]
value.go#L887: func methodReceiver(op string, v Value, methodIndex int) (rcvrtype *abi.Type, t *funcType, fn unsafe.Pointer) {
value.go#L890: tt := (*interfaceType)(unsafe.Pointer(v.typ()))
value.go#L903: fn = unsafe.Pointer(&iface.itab.fun[i])
value.go#L904: t = (*funcType)(unsafe.Pointer(tt.typeOff(m.Typ)))
value.go#L916: fn = unsafe.Pointer(&ifn)
value.go#L917: t = (*funcType)(unsafe.Pointer(typeOffFor(v.typ(), m.Mtyp)))
value.go#L926: func storeRcvr(v Value, p unsafe.Pointer) {
value.go#L931: *(*unsafe.Pointer)(p) = iface.word
value.go#L933: *(*unsafe.Pointer)(p) = *(*unsafe.Pointer)(v.ptr)
value.go#L935: *(*unsafe.Pointer)(p) = v.ptr
value.go#L964: func callMethod(ctxt *methodValue, frame unsafe.Pointer, retValid *bool, regs *abi.RegArgs) {
value.go#L982: methodFrame := methodFramePool.Get().(unsafe.Pointer)
value.go#L993: storeRcvr(rcvr, unsafe.Pointer(&methodRegs.Ptrs[st.ireg]))
value.go#L996: storeRcvr(rcvr, unsafe.Pointer(&methodRegs.Ints[st.ireg]))
value.go#L998: storeRcvr(rcvr, unsafe.Pointer(&methodRegs.Floats[st.freg]))
value.go#L1044: methodRegs.Ptrs[mStep.ireg] = *(*unsafe.Pointer)(from)
value.go#L1063: *(*unsafe.Pointer)(to) = valueRegs.Ptrs[vStep.ireg]
value.go#L1155: pc := *(*uintptr)(unsafe.Pointer(&f))
value.go#L1259: ptr = *(*unsafe.Pointer)(ptr)
value.go#L1265: tt := (*ptrType)(unsafe.Pointer(v.typ()))
value.go#L1280: tt := (*structType)(unsafe.Pointer(v.typ()))
value.go#L1403: tt := (*arrayType)(unsafe.Pointer(v.typ()))
value.go#L1426: tt := (*sliceType)(unsafe.Pointer(v.typ()))
value.go#L1560: ptr = *(*unsafe.Pointer)(ptr)
value.go#L1566: return *(*unsafe.Pointer)(v.ptr) == nil
value.go#L1604: return v.typ().Equal(noescape(v.ptr), unsafe.Pointer(&zeroVal[0]))
value.go#L1625: return v.typ().Equal(noescape(v.ptr), unsafe.Pointer(&zeroVal[0]))
value.go#L1684: *(*[2]unsafe.Pointer)(v.ptr) = [2]unsafe.Pointer{}
value.go#L1686: *(*unsafe.Pointer)(v.ptr) = nil
value.go#L1715: tt := (*arrayType)(unsafe.Pointer(v.typ()))
value.go#L1741: tt := (*mapType)(unsafe.Pointer(v.typ()))
value.go#L1751: var e unsafe.Pointer
value.go#L1757: var k unsafe.Pointer
value.go#L1761: k = unsafe.Pointer(&key.ptr)
value.go#L1780: tt := (*mapType)(unsafe.Pointer(v.typ()))
value.go#L1813: key unsafe.Pointer
value.go#L1814: elem unsafe.Pointer
value.go#L1815: t unsafe.Pointer
value.go#L1816: h unsafe.Pointer
value.go#L1817: buckets unsafe.Pointer
value.go#L1818: bptr unsafe.Pointer
value.go#L1819: overflow *[]unsafe.Pointer
value.go#L1820: oldoverflow *[]unsafe.Pointer
value.go#L1851: t := (*mapType)(unsafe.Pointer(iter.m.typ()))
value.go#L1870: var target unsafe.Pointer
value.go#L1875: t := (*mapType)(unsafe.Pointer(iter.m.typ()))
value.go#L1894: t := (*mapType)(unsafe.Pointer(iter.m.typ()))
value.go#L1913: var target unsafe.Pointer
value.go#L1918: t := (*mapType)(unsafe.Pointer(iter.m.typ()))
value.go#L1994: func copyVal(typ *abi.Type, fl flag, ptr unsafe.Pointer) Value {
value.go#L2002: return Value{typ, *(*unsafe.Pointer)(ptr), fl}
value.go#L2063: tt := (*structType)(unsafe.Pointer(v.typ()))
value.go#L2177: p = *(*unsafe.Pointer)(p)
value.go#L2201: tt := (*chanType)(unsafe.Pointer(v.typ()))
value.go#L2207: var p unsafe.Pointer
value.go#L2213: p = unsafe.Pointer(&val.ptr)
value.go#L2234: tt := (*chanType)(unsafe.Pointer(v.typ()))
value.go#L2240: var p unsafe.Pointer
value.go#L2244: p = unsafe.Pointer(&x.ptr)
value.go#L2256: var target unsafe.Pointer
value.go#L2262: if x.ptr == unsafe.Pointer(&zeroVal[0]) {
value.go#L2268: *(*unsafe.Pointer)(v.ptr) = x.ptr
value.go#L2386: tt := (*mapType)(unsafe.Pointer(v.typ()))
value.go#L2396: var e unsafe.Pointer
value.go#L2400: e = unsafe.Pointer(&elem.ptr)
value.go#L2407: var k unsafe.Pointer
value.go#L2411: k = unsafe.Pointer(&key.ptr)
value.go#L2419: var e unsafe.Pointer
value.go#L2423: e = unsafe.Pointer(&elem.ptr)
value.go#L2452: func (v Value) SetPointer(x unsafe.Pointer) {
value.go#L2455: *(*unsafe.Pointer)(v.ptr) = x
value.go#L2473: base unsafe.Pointer
value.go#L2483: tt := (*arrayType)(unsafe.Pointer(v.typ()))
value.go#L2485: typ = (*sliceType)(unsafe.Pointer(tt.Slice))
value.go#L2489: typ = (*sliceType)(unsafe.Pointer(v.typ()))
value.go#L2503: return Value{v.typ(), unsafe.Pointer(&t), v.flag}
value.go#L2511: var x []unsafe.Pointer
value.go#L2514: s := (*unsafeheader.Slice)(unsafe.Pointer(&x))
value.go#L2525: return Value{typ.Common(), unsafe.Pointer(&x), fl}
value.go#L2535: base unsafe.Pointer
value.go#L2545: tt := (*arrayType)(unsafe.Pointer(v.typ()))
value.go#L2547: typ = (*sliceType)(unsafe.Pointer(tt.Slice))
value.go#L2551: typ = (*sliceType)(unsafe.Pointer(v.typ()))
value.go#L2563: var x []unsafe.Pointer
value.go#L2566: s := (*unsafeheader.Slice)(unsafe.Pointer(&x))
value.go#L2577: return Value{typ.Common(), unsafe.Pointer(&x), fl}
value.go#L2627: return (*rtype)(noescape(unsafe.Pointer(v.typ_))) // inline of toRType(v.typ()), for own inlining in inline test
value.go#L2647: tt := (*interfaceType)(unsafe.Pointer(typ))
value.go#L2727: func (v Value) UnsafePointer() unsafe.Pointer {
value.go#L2737: return *(*unsafe.Pointer)(v.ptr)
value.go#L2751: return *(*unsafe.Pointer)(unsafe.Pointer(&code))
value.go#L2757: p = *(*unsafe.Pointer)(p)
value.go#L2807: func arrayAt(p unsafe.Pointer, i int, eltSize uintptr, whySafe string) unsafe.Pointer {
value.go#L2850: v.ptr = unsafe.Pointer(s)
value.go#L2865: st := (*sliceType)(unsafe.Pointer(v.typ()))
value.go#L2961: ch unsafe.Pointer // channel
value.go#L2962: val unsafe.Pointer // ptr to data (SendDir) or ptr to receive buffer (RecvDir)
value.go#L3063: tt := (*chanType)(unsafe.Pointer(ch.typ()))
value.go#L3078: rc.val = unsafe.Pointer(&v.ptr)
value.go#L3094: tt := (*chanType)(unsafe.Pointer(ch.typ()))
value.go#L3106: tt := (*chanType)(unsafe.Pointer(runcases[chosen].typ))
value.go#L3113: recv = Value{t, *(*unsafe.Pointer)(p), fl}
value.go#L3126: func unsafe_New(*abi.Type) unsafe.Pointer
value.go#L3129: func unsafe_NewArray(*abi.Type, int) unsafe.Pointer
value.go#L3148: return Value{&typ.(*rtype).t, unsafe.Pointer(&s), flagIndir | flag(Slice)}
value.go#L3227: var p unsafe.Pointer
value.go#L3229: p = unsafe.Pointer(&zeroVal[0])
value.go#L3263: func NewAt(typ Type, p unsafe.Pointer) Value {
value.go#L3274: func (v Value) assignTo(context string, dst *abi.Type, target unsafe.Pointer) Value {
value.go#L3787: func chancap(ch unsafe.Pointer) int
value.go#L3790: func chanclose(ch unsafe.Pointer)
value.go#L3793: func chanlen(ch unsafe.Pointer) int
value.go#L3803: func chanrecv(ch unsafe.Pointer, nb bool, val unsafe.Pointer) (selected, received bool)
value.go#L3806: func chansend0(ch unsafe.Pointer, val unsafe.Pointer, nb bool) bool
value.go#L3808: func chansend(ch unsafe.Pointer, val unsafe.Pointer, nb bool) bool {
value.go#L3813: func makechan(typ *abi.Type, size int) (ch unsafe.Pointer)
value.go#L3814: func makemap(t *abi.Type, cap int) (m unsafe.Pointer)
value.go#L3817: func mapaccess(t *abi.Type, m unsafe.Pointer, key unsafe.Pointer) (val unsafe.Pointer)
value.go#L3820: func mapaccess_faststr(t *abi.Type, m unsafe.Pointer, key string) (val unsafe.Pointer)
value.go#L3823: func mapassign0(t *abi.Type, m unsafe.Pointer, key, val unsafe.Pointer)
value.go#L3825: func mapassign(t *abi.Type, m unsafe.Pointer, key, val unsafe.Pointer) {
value.go#L3832: func mapassign_faststr0(t *abi.Type, m unsafe.Pointer, key string, val unsafe.Pointer)
value.go#L3834: func mapassign_faststr(t *abi.Type, m unsafe.Pointer, key string, val unsafe.Pointer) {
value.go#L3835: contentEscapes((*unsafeheader.String)(unsafe.Pointer(&key)).Data)
value.go#L3841: func mapdelete(t *abi.Type, m unsafe.Pointer, key unsafe.Pointer)
value.go#L3844: func mapdelete_faststr(t *abi.Type, m unsafe.Pointer, key string)
value.go#L3847: func mapiterinit(t *abi.Type, m unsafe.Pointer, it *hiter)
value.go#L3850: func mapiterkey(it *hiter) (key unsafe.Pointer)
value.go#L3853: func mapiterelem(it *hiter) (elem unsafe.Pointer)
value.go#L3859: func maplen(m unsafe.Pointer) int
value.go#L3861: func mapclear(t *abi.Type, m unsafe.Pointer)
value.go#L3889: func call(stackArgsType *abi.Type, f, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
value.go#L3891: func ifaceE2I(t *abi.Type, src any, dst unsafe.Pointer)
value.go#L3896: func memmove(dst, src unsafe.Pointer, size uintptr)
value.go#L3901: func typedmemmove(t *abi.Type, dst, src unsafe.Pointer)
value.go#L3906: func typedmemclr(t *abi.Type, ptr unsafe.Pointer)
value.go#L3912: func typedmemclrpartial(t *abi.Type, ptr unsafe.Pointer, off, size uintptr)
value.go#L3924: func typedarrayclear(elemType *abi.Type, ptr unsafe.Pointer, len int)
value.go#L3927: func typehash(t *abi.Type, p unsafe.Pointer, h uintptr) uintptr
value.go#L3952: func contentEscapes(x unsafe.Pointer) {
value.go#L3959: func noescape(p unsafe.Pointer) unsafe.Pointer {
value.go#L3961: return unsafe.Pointer(x ^ 0)
runtime
alg.go#L19: func memhash0(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L23: func memhash8(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L27: func memhash16(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L31: func memhash128(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L36: func memhash_varlen(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L38: size := *(*uintptr)(unsafe.Pointer(ptr + unsafe.Sizeof(h)))
alg.go#L48: func memhash(p unsafe.Pointer, h, s uintptr) uintptr
alg.go#L49: func memhash32(p unsafe.Pointer, h uintptr) uintptr
alg.go#L50: func memhash64(p unsafe.Pointer, h uintptr) uintptr
alg.go#L51: func strhash(p unsafe.Pointer, h uintptr) uintptr
alg.go#L53: func strhashFallback(a unsafe.Pointer, h uintptr) uintptr {
alg.go#L63: func f32hash(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L75: func f64hash(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L87: func c64hash(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L89: return f32hash(unsafe.Pointer(&x[1]), f32hash(unsafe.Pointer(&x[0]), h))
alg.go#L92: func c128hash(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L94: return f64hash(unsafe.Pointer(&x[1]), f64hash(unsafe.Pointer(&x[0]), h))
alg.go#L97: func interhash(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L112: return c1 * typehash(t, unsafe.Pointer(&a.data), h^c0)
alg.go#L118: func nilinterhash(p unsafe.Pointer, h uintptr) uintptr {
alg.go#L129: return c1 * typehash(t, unsafe.Pointer(&a.data), h^c0)
alg.go#L145: func typehash(t *_type, p unsafe.Pointer, h uintptr) uintptr {
alg.go#L169: i := (*interfacetype)(unsafe.Pointer(t))
alg.go#L175: a := (*arraytype)(unsafe.Pointer(t))
alg.go#L181: s := (*structtype)(unsafe.Pointer(t))
alg.go#L197: func reflect_typehash(t *_type, p unsafe.Pointer, h uintptr) uintptr {
alg.go#L201: func memequal0(p, q unsafe.Pointer) bool {
alg.go#L204: func memequal8(p, q unsafe.Pointer) bool {
alg.go#L207: func memequal16(p, q unsafe.Pointer) bool {
alg.go#L210: func memequal32(p, q unsafe.Pointer) bool {
alg.go#L213: func memequal64(p, q unsafe.Pointer) bool {
alg.go#L216: func memequal128(p, q unsafe.Pointer) bool {
alg.go#L219: func f32equal(p, q unsafe.Pointer) bool {
alg.go#L222: func f64equal(p, q unsafe.Pointer) bool {
alg.go#L225: func c64equal(p, q unsafe.Pointer) bool {
alg.go#L228: func c128equal(p, q unsafe.Pointer) bool {
alg.go#L231: func strequal(p, q unsafe.Pointer) bool {
alg.go#L234: func interequal(p, q unsafe.Pointer) bool {
alg.go#L239: func nilinterequal(p, q unsafe.Pointer) bool {
alg.go#L244: func efaceeq(t *_type, x, y unsafe.Pointer) bool {
alg.go#L260: func ifaceeq(tab *itab, x, y unsafe.Pointer) bool {
alg.go#L278: return strhash(noescape(unsafe.Pointer(&s)), seed)
alg.go#L282: s := (*slice)(unsafe.Pointer(&b))
alg.go#L287: return memhash32(noescape(unsafe.Pointer(&i)), seed)
alg.go#L291: return memhash64(noescape(unsafe.Pointer(&i)), seed)
alg.go#L295: return nilinterhash(noescape(unsafe.Pointer(&i)), seed)
alg.go#L301: return interhash(noescape(unsafe.Pointer(&i)), seed)
alg.go#L325: getRandomData((*[len(hashkey) * goarch.PtrSize]byte)(unsafe.Pointer(&hashkey))[:])
alg.go#L339: func readUnaligned32(p unsafe.Pointer) uint32 {
alg.go#L347: func readUnaligned64(p unsafe.Pointer) uint64 {
arena.go#L100: func arena_newArena() unsafe.Pointer {
arena.go#L101: return unsafe.Pointer(newUserArena())
arena.go#L110: func arena_arena_New(arena unsafe.Pointer, typ any) any {
arena.go#L115: te := (*ptrtype)(unsafe.Pointer(t)).Elem
arena.go#L127: func arena_arena_Slice(arena unsafe.Pointer, slice any, cap int) {
arena.go#L134: func arena_arena_Free(arena unsafe.Pointer) {
arena.go#L143: var v unsafe.Pointer
arena.go#L171: et := (*slicetype)(unsafe.Pointer(t)).Elem
arena.go#L176: xe.data = unsafe.Pointer(sl)
arena.go#L178: et := (*ptrtype)(unsafe.Pointer(t)).Elem
arena.go#L240: refs []unsafe.Pointer
arena.go#L267: func (a *userArena) new(typ *_type) unsafe.Pointer {
arena.go#L287: typ = (*ptrtype)(unsafe.Pointer(typ)).Elem
arena.go#L291: typ = (*slicetype)(unsafe.Pointer(typ)).Elem
arena.go#L355: func (a *userArena) alloc(typ *_type, cap int) unsafe.Pointer {
arena.go#L357: var x unsafe.Pointer
arena.go#L386: var x unsafe.Pointer
arena.go#L416: x unsafe.Pointer
arena.go#L437: func (s *mspan) userArenaNextFree(typ *_type, cap int) unsafe.Pointer {
arena.go#L447: return unsafe.Pointer(&zerobase)
arena.go#L470: var ptr unsafe.Pointer
arena.go#L475: ptr = unsafe.Pointer(v)
arena.go#L480: ptr = unsafe.Pointer(v)
arena.go#L528: func userArenaHeapBitsSetType(typ *_type, ptr unsafe.Pointer, base uintptr) {
arena.go#L622: func userArenaHeapBitsSetSliceType(typ *_type, n int, ptr unsafe.Pointer, base uintptr) {
arena.go#L635: func newUserArenaChunk() (unsafe.Pointer, *mspan) {
arena.go#L666: x := unsafe.Pointer(span.base())
arena.go#L678: racemalloc(unsafe.Pointer(span.base()), span.elemsize)
arena.go#L683: msanmalloc(unsafe.Pointer(span.base()), span.elemsize)
arena.go#L692: asanpoison(unsafe.Pointer(span.limit), span.npages*pageSize-span.elemsize)
arena.go#L693: asanunpoison(unsafe.Pointer(span.base()), span.elemsize)
arena.go#L705: profilealloc(mp, unsafe.Pointer(span.base()), userArenaChunkBytes)
arena.go#L718: tracealloc(unsafe.Pointer(span.base()), userArenaChunkBytes, nil)
arena.go#L782: sysFault(unsafe.Pointer(s.base()), s.npages*pageSize)
arena.go#L811: racefree(unsafe.Pointer(s.base()), s.elemsize)
arena.go#L838: func freeUserArenaChunk(s *mspan, x unsafe.Pointer) {
arena.go#L849: racefree(unsafe.Pointer(s.base()), s.elemsize)
arena.go#L852: msanfree(unsafe.Pointer(s.base()), s.elemsize)
arena.go#L855: asanpoison(unsafe.Pointer(s.base()), s.elemsize)
arena.go#L948: sysMap(unsafe.Pointer(base), userArenaChunkBytes, &gcController.heapReleased)
arena.go#L949: sysUsed(unsafe.Pointer(base), userArenaChunkBytes, userArenaChunkBytes)
arena.go#L995: memclrNoHeapPointers(unsafe.Pointer(s.base()), s.elemsize)
asan0.go#L19: func asanread(addr unsafe.Pointer, sz uintptr) { throw("asan") }
asan0.go#L20: func asanwrite(addr unsafe.Pointer, sz uintptr) { throw("asan") }
asan0.go#L21: func asanunpoison(addr unsafe.Pointer, sz uintptr) { throw("asan") }
asan0.go#L22: func asanpoison(addr unsafe.Pointer, sz uintptr) { throw("asan") }
asan0.go#L23: func asanregisterglobals(addr unsafe.Pointer, sz uintptr) { throw("asan") }
atomic_pointer.go#L22: func atomicwb(ptr *unsafe.Pointer, new unsafe.Pointer) {
atomic_pointer.go#L23: slot := (*uintptr)(unsafe.Pointer(ptr))
atomic_pointer.go#L32: func atomicstorep(ptr unsafe.Pointer, new unsafe.Pointer) {
atomic_pointer.go#L34: atomicwb((*unsafe.Pointer)(ptr), new)
atomic_pointer.go#L37: cgoCheckPtrWrite((*unsafe.Pointer)(ptr), new)
atomic_pointer.go#L47: func atomic_storePointer(ptr *unsafe.Pointer, new unsafe.Pointer) {
atomic_pointer.go#L48: atomicstorep(unsafe.Pointer(ptr), new)
atomic_pointer.go#L56: func atomic_casPointer(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool {
atomic_pointer.go#L75: func sync_atomic_StorePointer(ptr *unsafe.Pointer, new unsafe.Pointer) {
atomic_pointer.go#L82: sync_atomic_StoreUintptr((*uintptr)(unsafe.Pointer(ptr)), uintptr(new))
atomic_pointer.go#L90: func sync_atomic_SwapPointer(ptr *unsafe.Pointer, new unsafe.Pointer) unsafe.Pointer {
atomic_pointer.go#L97: old := unsafe.Pointer(sync_atomic_SwapUintptr((*uintptr)(noescape(unsafe.Pointer(ptr))), uintptr(new)))
atomic_pointer.go#L106: func sync_atomic_CompareAndSwapPointer(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool {
atomic_pointer.go#L113: return sync_atomic_CompareAndSwapUintptr((*uintptr)(noescape(unsafe.Pointer(ptr))), uintptr(old), uintptr(new))
cgo.go#L25: _cgo_init unsafe.Pointer
cgo.go#L26: _cgo_thread_start unsafe.Pointer
cgo.go#L27: _cgo_sys_thread_create unsafe.Pointer
cgo.go#L28: _cgo_notify_runtime_init_done unsafe.Pointer
cgo.go#L29: _cgo_callers unsafe.Pointer
cgo.go#L30: _cgo_set_context_function unsafe.Pointer
cgo.go#L31: _cgo_yield unsafe.Pointer
cgo.go#L32: _cgo_pthread_key_created unsafe.Pointer
cgo.go#L33: _cgo_bindm unsafe.Pointer
cgo.go#L34: _cgo_getstackbound unsafe.Pointer
cgo_mmap.go#L17: var _cgo_mmap unsafe.Pointer
cgo_mmap.go#L23: var _cgo_munmap unsafe.Pointer
cgo_mmap.go#L31: func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (unsafe.Pointer, int) {
cgo_mmap.go#L45: return unsafe.Pointer(ret), 0
cgo_mmap.go#L50: func munmap(addr unsafe.Pointer, n uintptr) {
cgo_mmap.go#L59: func sysMmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (p unsafe.Pointer, err int)
cgo_mmap.go#L63: func callCgoMmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) uintptr
cgo_mmap.go#L66: func sysMunmap(addr unsafe.Pointer, n uintptr)
cgo_mmap.go#L70: func callCgoMunmap(addr unsafe.Pointer, n uintptr)
cgo_sigaction.go#L17: var _cgo_sigaction unsafe.Pointer
cgo_sigaction.go#L29: msanwrite(unsafe.Pointer(new), unsafe.Sizeof(*new))
cgo_sigaction.go#L32: asanwrite(unsafe.Pointer(new), unsafe.Sizeof(*new))
cgo_sigaction.go#L49: sp := uintptr(unsafe.Pointer(&sig))
cgo_sigaction.go#L83: msanread(unsafe.Pointer(old), unsafe.Sizeof(*old))
cgo_sigaction.go#L86: asanread(unsafe.Pointer(old), unsafe.Sizeof(*old))
cgocall.go#L100: args unsafe.Pointer
cgocall.go#L109: func syscall_cgocaller(fn unsafe.Pointer, args ...uintptr) uintptr {
cgocall.go#L110: as := argset{args: unsafe.Pointer(&args[0])}
cgocall.go#L111: cgocall(fn, unsafe.Pointer(&as))
cgocall.go#L124: func cgocall(fn, arg unsafe.Pointer) int32 {
cgocall.go#L134: racereleasemerge(unsafe.Pointer(&racecgosync))
cgocall.go#L189: raceacquire(unsafe.Pointer(&racecgosync))
cgocall.go#L212: func cgocallbackg(fn, frame unsafe.Pointer, ctxt uintptr) {
cgocall.go#L235: savedsp := unsafe.Pointer(gp.syscallsp)
cgocall.go#L268: func cgocallbackg1(fn, frame unsafe.Pointer, ctxt uintptr) {
cgocall.go#L289: p := (*slice)(unsafe.Pointer(&gp.cgoCtxt))
cgocall.go#L290: atomicstorep(unsafe.Pointer(&p.array), unsafe.Pointer(&s[0]))
cgocall.go#L296: p := (*slice)(unsafe.Pointer(&gp.cgoCtxt))
cgocall.go#L321: raceacquire(unsafe.Pointer(&racecgosync))
cgocall.go#L326: var cb func(frame unsafe.Pointer)
cgocall.go#L328: *(*unsafe.Pointer)(unsafe.Pointer(&cb)) = noescape(unsafe.Pointer(&cbFV))
cgocall.go#L332: racereleasemerge(unsafe.Pointer(&racecgosync))
cgocall.go#L346: sched.sp = *(*uintptr)(unsafe.Pointer(sched.sp + alignUp(sys.MinFrameSize, sys.StackAlign)))
cgocall.go#L419: p = *(*unsafe.Pointer)(p)
cgocall.go#L431: pt := (*ptrtype)(unsafe.Pointer(t))
cgocall.go#L461: func cgoCheckArg(t *_type, p unsafe.Pointer, indir, top bool, msg string) {
cgocall.go#L471: at := (*arraytype)(unsafe.Pointer(t))
cgocall.go#L490: p = *(*unsafe.Pointer)(p)
cgocall.go#L504: if inheap(uintptr(unsafe.Pointer(it))) {
cgocall.go#L507: p = *(*unsafe.Pointer)(add(p, goarch.PtrSize))
cgocall.go#L516: st := (*slicetype)(unsafe.Pointer(t))
cgocall.go#L541: st := (*structtype)(unsafe.Pointer(t))
cgocall.go#L557: p = *(*unsafe.Pointer)(p)
cgocall.go#L578: func cgoCheckUnknownPointer(p unsafe.Pointer, msg string) (base, i uintptr) {
cgocall.go#L592: pp := *(*unsafe.Pointer)(unsafe.Pointer(addr))
cgocall.go#L620: func cgoIsGoPointer(p unsafe.Pointer) bool {
cgocall.go#L642: func cgoInRange(p unsafe.Pointer, start, end uintptr) bool {
cgocheck.go#L25: func cgoCheckPtrWrite(dst *unsafe.Pointer, src unsafe.Pointer) {
cgocheck.go#L35: if cgoIsGoPointer(unsafe.Pointer(dst)) {
cgocheck.go#L61: if inPersistentAlloc(uintptr(unsafe.Pointer(dst))) {
cgocheck.go#L66: println("write of unpinned Go pointer", hex(uintptr(src)), "to non-Go memory", hex(uintptr(unsafe.Pointer(dst))))
cgocheck.go#L79: func cgoCheckMemmove(typ *_type, dst, src unsafe.Pointer) {
cgocheck.go#L91: func cgoCheckMemmove2(typ *_type, dst, src unsafe.Pointer, off, size uintptr) {
cgocheck.go#L112: func cgoCheckSliceCopy(typ *_type, dst, src unsafe.Pointer, n int) {
cgocheck.go#L135: func cgoCheckTypedBlock(typ *_type, src unsafe.Pointer, off, size uintptr) {
cgocheck.go#L186: v := *(*unsafe.Pointer)(unsafe.Pointer(addr))
cgocheck.go#L199: func cgoCheckBits(src unsafe.Pointer, gcbits *byte, off, size uintptr) {
cgocheck.go#L218: v := *(*unsafe.Pointer)(add(src, i))
cgocheck.go#L235: func cgoCheckUsingType(typ *_type, src unsafe.Pointer, off, size uintptr) {
cgocheck.go#L256: at := (*arraytype)(unsafe.Pointer(typ))
cgocheck.go#L274: st := (*structtype)(unsafe.Pointer(typ))
chan.go#L36: buf unsafe.Pointer // points to an array of dataqsiz elements
chan.go#L103: c.buf = add(unsafe.Pointer(c), hchanSize)
chan.go#L122: func chanbuf(c *hchan, i uint) unsafe.Pointer {
chan.go#L144: func chansend1(c *hchan, elem unsafe.Pointer) {
chan.go#L160: func chansend(c *hchan, ep unsafe.Pointer, block bool, callerpc uintptr) bool {
chan.go#L259: gopark(chanparkcommit, unsafe.Pointer(&c.lock), waitReasonChanSend, traceBlockChanSend, 2)
chan.go#L294: func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
chan.go#L317: gp.param = unsafe.Pointer(sg)
chan.go#L335: func sendDirect(t *_type, sg *sudog, src unsafe.Pointer) {
chan.go#L348: func recvDirect(t *_type, sg *sudog, dst unsafe.Pointer) {
chan.go#L392: gp.param = unsafe.Pointer(sg)
chan.go#L411: gp.param = unsafe.Pointer(sg)
chan.go#L433: return atomic.Loadp(unsafe.Pointer(&c.sendq.first)) == nil
chan.go#L441: func chanrecv1(c *hchan, elem unsafe.Pointer) {
chan.go#L446: func chanrecv2(c *hchan, elem unsafe.Pointer) (received bool) {
chan.go#L457: func chanrecv(c *hchan, ep unsafe.Pointer, block bool) (selected, received bool) {
chan.go#L583: gopark(chanparkcommit, unsafe.Pointer(&c.lock), waitReasonChanReceive, traceBlockChanRecv, 2)
chan.go#L615: func recv(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
chan.go#L649: gp.param = unsafe.Pointer(sg)
chan.go#L657: func chanparkcommit(gp *g, chanLock unsafe.Pointer) bool {
chan.go#L693: func selectnbsend(c *hchan, elem unsafe.Pointer) (selected bool) {
chan.go#L713: func selectnbrecv(elem unsafe.Pointer, c *hchan) (selected, received bool) {
chan.go#L718: func reflect_chansend(c *hchan, elem unsafe.Pointer, nb bool) (selected bool) {
chan.go#L723: func reflect_chanrecv(c *hchan, nb bool, elem unsafe.Pointer) (selected bool, received bool) {
chan.go#L802: func (c *hchan) raceaddr() unsafe.Pointer {
chan.go#L808: return unsafe.Pointer(&c.buf)
checkptr.go#L9: func checkptrAlignment(p unsafe.Pointer, elem *_type, n uintptr) {
checkptr.go#L32: func checkptrStraddles(ptr unsafe.Pointer, size uintptr) bool {
checkptr.go#L50: func checkptrArithmetic(p unsafe.Pointer, originals []unsafe.Pointer) {
checkptr.go#L79: func checkptrBase(p unsafe.Pointer) uintptr {
covercounter.go#L21: Counters: (*uint32)(unsafe.Pointer(datap.covctrs)),
covermeta.go#L36: func addCovMeta(p unsafe.Pointer, dlen uint32, hash [16]byte, pkpath string, pkid int, cmode uint8, cgran uint8) uint32 {
cpuprof.go#L106: func (p *cpuProfile) add(tagPtr *unsafe.Pointer, stk []uintptr) {
cpuprof.go#L226: func runtime_pprof_readProfile() ([]uint64, []unsafe.Pointer, bool) {
debug.go#L49: for mp := (*m)(atomic.Loadp(unsafe.Pointer(&allm))); mp != nil; mp = mp.alllink {
debugcall.go#L124: newg := newproc1(*(**funcval)(unsafe.Pointer(&fn)), gp, callerpc)
debugcall.go#L129: newg.param = unsafe.Pointer(args)
debugcall.go#L246: *(*unsafe.Pointer)(unsafe.Pointer(&dispatchF)) = noescape(unsafe.Pointer(&dispatchFV))
debuglog.go#L64: allp := (*uintptr)(unsafe.Pointer(&allDloggers))
debuglog.go#L65: all := (*dlogger)(unsafe.Pointer(atomic.Loaduintptr(allp)))
debuglog.go#L86: headp := (*uintptr)(unsafe.Pointer(&allDloggers))
debuglog.go#L89: l.allLink = (*dlogger)(unsafe.Pointer(head))
debuglog.go#L90: if atomic.Casuintptr(headp, head, uintptr(unsafe.Pointer(l))) {
debuglog.go#L298: if len(x) > 4 && datap.etext <= uintptr(unsafe.Pointer(strData)) && uintptr(unsafe.Pointer(strData)) < datap.end {
debuglog.go#L304: l.w.uvarint(uint64(uintptr(unsafe.Pointer(strData)) - datap.etext))
debuglog.go#L310: bb := (*slice)(unsafe.Pointer(&b))
debuglog.go#L311: bb.array = unsafe.Pointer(strData)
debuglog.go#L666: str: unsafe.Pointer(ptr),
debuglog.go#L669: s := *(*string)(unsafe.Pointer(&str))
debuglog.go#L705: allp := (*uintptr)(unsafe.Pointer(&allDloggers))
debuglog.go#L706: all := (*dlogger)(unsafe.Pointer(atomic.Loaduintptr(allp)))
debuglog.go#L787: print(slicebytetostringtmp((*byte)(noescape(unsafe.Pointer(&pnanoBytes[0]))), len(pnanoBytes)))
env_posix.go#L45: var _cgo_setenv unsafe.Pointer // pointer to C function
env_posix.go#L46: var _cgo_unsetenv unsafe.Pointer // pointer to C function
env_posix.go#L53: arg := [2]unsafe.Pointer{cstring(k), cstring(v)}
env_posix.go#L54: asmcgocall(_cgo_setenv, unsafe.Pointer(&arg))
env_posix.go#L62: arg := [1]unsafe.Pointer{cstring(k)}
env_posix.go#L63: asmcgocall(_cgo_unsetenv, unsafe.Pointer(&arg))
env_posix.go#L66: func cstring(s string) unsafe.Pointer {
env_posix.go#L69: return unsafe.Pointer(&p[0])
float.go#L47: return *(*uint64)(unsafe.Pointer(&f))
float.go#L53: return *(*float64)(unsafe.Pointer(&b))
hash64.go#L25: func memhashFallback(p unsafe.Pointer, seed, s uintptr) uintptr {
hash64.go#L71: func memhash32Fallback(p unsafe.Pointer, seed uintptr) uintptr {
hash64.go#L76: func memhash64Fallback(p unsafe.Pointer, seed uintptr) uintptr {
hash64.go#L86: func r4(p unsafe.Pointer) uintptr {
hash64.go#L90: func r8(p unsafe.Pointer) uintptr {
heapdump.go#L78: func dwrite(data unsafe.Pointer, len uintptr) {
heapdump.go#L88: write(dumpfd, unsafe.Pointer(&buf), int32(nbuf))
heapdump.go#L99: dwrite(unsafe.Pointer(&b), 1)
heapdump.go#L103: write(dumpfd, unsafe.Pointer(&buf), int32(nbuf))
heapdump.go#L135: dwrite(unsafe.Pointer(&buf), uintptr(n))
heapdump.go#L147: func dumpmemrange(data unsafe.Pointer, len uintptr) {
heapdump.go#L155: dwrite(unsafe.Pointer(&b[0]), uintptr(len(b)))
heapdump.go#L160: dumpmemrange(unsafe.Pointer(unsafe.StringData(s)), uintptr(len(s)))
heapdump.go#L195: dumpint(uint64(uintptr(unsafe.Pointer(t))))
heapdump.go#L204: dwrite(unsafe.Pointer(unsafe.StringData(pkgpath)), uintptr(len(pkgpath)))
heapdump.go#L206: dwrite(unsafe.Pointer(unsafe.StringData(name)), uintptr(len(name)))
heapdump.go#L212: func dumpobj(obj unsafe.Pointer, size uintptr, bv bitvector) {
heapdump.go#L219: func dumpotherroot(description string, to unsafe.Pointer) {
heapdump.go#L225: func dumpfinalizer(obj unsafe.Pointer, fn *funcval, fint *_type, ot *ptrtype) {
heapdump.go#L228: dumpint(uint64(uintptr(unsafe.Pointer(fn))))
heapdump.go#L229: dumpint(uint64(uintptr(unsafe.Pointer(fn.fn))))
heapdump.go#L230: dumpint(uint64(uintptr(unsafe.Pointer(fint))))
heapdump.go#L231: dumpint(uint64(uintptr(unsafe.Pointer(ot))))
heapdump.go#L283: dumpint(uint64(uintptr(unsafe.Pointer(child.sp)))) // sp of child, or 0 if bottom of stack
heapdump.go#L284: dumpmemrange(unsafe.Pointer(s.sp), s.fp-s.sp) // frame contents
heapdump.go#L329: child.sp = (*uint8)(unsafe.Pointer(s.sp))
heapdump.go#L353: dumpint(uint64(uintptr(unsafe.Pointer(gp))))
heapdump.go#L363: dumpint(uint64(uintptr(unsafe.Pointer(gp.m))))
heapdump.go#L364: dumpint(uint64(uintptr(unsafe.Pointer(gp._defer))))
heapdump.go#L365: dumpint(uint64(uintptr(unsafe.Pointer(gp._panic))))
heapdump.go#L381: dumpint(uint64(uintptr(unsafe.Pointer(d))))
heapdump.go#L382: dumpint(uint64(uintptr(unsafe.Pointer(gp))))
heapdump.go#L385: fn := *(**funcval)(unsafe.Pointer(&d.fn))
heapdump.go#L386: dumpint(uint64(uintptr(unsafe.Pointer(fn))))
heapdump.go#L391: dumpint(uint64(uintptr(unsafe.Pointer(fn.fn))))
heapdump.go#L393: dumpint(uint64(uintptr(unsafe.Pointer(d.link))))
heapdump.go#L397: dumpint(uint64(uintptr(unsafe.Pointer(p))))
heapdump.go#L398: dumpint(uint64(uintptr(unsafe.Pointer(gp))))
heapdump.go#L400: dumpint(uint64(uintptr(unsafe.Pointer(eface._type))))
heapdump.go#L401: dumpint(uint64(uintptr(unsafe.Pointer(eface.data))))
heapdump.go#L403: dumpint(uint64(uintptr(unsafe.Pointer(p.link))))
heapdump.go#L427: func finq_callback(fn *funcval, obj unsafe.Pointer, nret uintptr, fint *_type, ot *ptrtype) {
heapdump.go#L430: dumpint(uint64(uintptr(unsafe.Pointer(fn))))
heapdump.go#L431: dumpint(uint64(uintptr(unsafe.Pointer(fn.fn))))
heapdump.go#L432: dumpint(uint64(uintptr(unsafe.Pointer(fint))))
heapdump.go#L433: dumpint(uint64(uintptr(unsafe.Pointer(ot))))
heapdump.go#L444: dumpmemrange(unsafe.Pointer(firstmoduledata.data), firstmoduledata.edata-firstmoduledata.data)
heapdump.go#L450: dumpmemrange(unsafe.Pointer(firstmoduledata.bss), firstmoduledata.ebss-firstmoduledata.bss)
heapdump.go#L461: spf := (*specialfinalizer)(unsafe.Pointer(sp))
heapdump.go#L462: p := unsafe.Pointer(s.base() + uintptr(spf.special.offset))
heapdump.go#L502: dumpobj(unsafe.Pointer(p), size, makeheapobjbv(p, size))
heapdump.go#L510: if *(*byte)(unsafe.Pointer(&x)) == 1 {
heapdump.go#L545: dumpint(uint64(uintptr(unsafe.Pointer(tab))))
heapdump.go#L546: dumpint(uint64(uintptr(unsafe.Pointer(t))))
heapdump.go#L556: dumpint(uint64(uintptr(unsafe.Pointer(mp))))
heapdump.go#L601: stk := (*[100000]uintptr)(unsafe.Pointer(pstk))
heapdump.go#L603: dumpint(uint64(uintptr(unsafe.Pointer(b))))
heapdump.go#L660: spp := (*specialprofile)(unsafe.Pointer(sp))
heapdump.go#L664: dumpint(uint64(uintptr(unsafe.Pointer(spp.b))))
heapdump.go#L680: memclrNoHeapPointers(unsafe.Pointer(&typecache), unsafe.Sizeof(typecache))
heapdump.go#L681: dwrite(unsafe.Pointer(&dumphdr[0]), uintptr(len(dumphdr)))
heapdump.go#L709: sysFree(unsafe.Pointer(&tmpbuf[0]), uintptr(len(tmpbuf)), &memstats.other_sys)
heapdump.go#L727: sysFree(unsafe.Pointer(&tmpbuf[0]), uintptr(len(tmpbuf)), &memstats.other_sys)
histogram.go#L144: return *(*float64)(unsafe.Pointer(&inf))
histogram.go#L149: return *(*float64)(unsafe.Pointer(&inf))
iface.go#L54: t := (*itabTableType)(atomic.Loadp(unsafe.Pointer(&itabTable)))
iface.go#L104: p := (**itab)(add(unsafe.Pointer(&t.entries), h*goarch.PtrSize))
iface.go#L108: m := (*itab)(atomic.Loadp(unsafe.Pointer(p)))
iface.go#L149: atomicstorep(unsafe.Pointer(&itabTable), unsafe.Pointer(t2))
iface.go#L165: p := (**itab)(add(unsafe.Pointer(&t.entries), h*goarch.PtrSize))
iface.go#L179: atomic.StorepNoWB(unsafe.Pointer(p), unsafe.Pointer(m))
iface.go#L203: xmhdr := (*[1 << 16]abi.Method)(add(unsafe.Pointer(x), uintptr(x.Moff)))[:nt:nt]
iface.go#L205: methods := (*[1 << 16]unsafe.Pointer)(unsafe.Pointer(&m.fun[0]))[:ni:ni]
iface.go#L206: var fun0 unsafe.Pointer
iface.go#L322: func convT(t *_type, v unsafe.Pointer) unsafe.Pointer {
iface.go#L336: func convTnoptr(t *_type, v unsafe.Pointer) unsafe.Pointer {
iface.go#L353: func convT16(val uint16) (x unsafe.Pointer) {
iface.go#L355: x = unsafe.Pointer(&staticuint64s[val])
iface.go#L366: func convT32(val uint32) (x unsafe.Pointer) {
iface.go#L368: x = unsafe.Pointer(&staticuint64s[val])
iface.go#L379: func convT64(val uint64) (x unsafe.Pointer) {
iface.go#L381: x = unsafe.Pointer(&staticuint64s[val])
iface.go#L389: func convTstring(val string) (x unsafe.Pointer) {
iface.go#L391: x = unsafe.Pointer(&zeroVal[0])
iface.go#L399: func convTslice(val []byte) (x unsafe.Pointer) {
iface.go#L401: if (*slice)(unsafe.Pointer(&val)).array == nil {
iface.go#L402: x = unsafe.Pointer(&zeroVal[0])
iface.go#L486: m := *(**itab)(add(unsafe.Pointer(&t.entries), i*goarch.PtrSize))
lfstack.go#L40: func (head *lfstack) pop() unsafe.Pointer {
lfstack.go#L49: return unsafe.Pointer(node)
lfstack.go#L61: if base, _, _ := findObject(uintptr(unsafe.Pointer(node)), 0, 0); base != 0 {
lfstack.go#L66: println("runtime: bad lfnode address", hex(uintptr(unsafe.Pointer(node))))
lfstack.go#L72: return uint64(taggedPointerPack(unsafe.Pointer(node), cnt))
lock_futex.go#L44: return (*uint32)(unsafe.Pointer(p))
malloc.go#L581: a, size := sysReserveAligned(unsafe.Pointer(p), arenaSize, heapArenaBytes)
malloc.go#L621: func (h *mheap) sysAlloc(n uintptr, hintList **arenaHint, register bool) (v unsafe.Pointer, size uintptr) {
malloc.go#L653: v = sysReserve(unsafe.Pointer(p), n)
malloc.go#L674: h.arenaHintAlloc.free(unsafe.Pointer(hint))
malloc.go#L744: sysHugePage(unsafe.Pointer(l2), unsafe.Sizeof(*l2))
malloc.go#L746: sysNoHugePage(unsafe.Pointer(l2), unsafe.Sizeof(*l2))
malloc.go#L748: atomic.StorepNoWB(unsafe.Pointer(&h.arenas[ri.l1()]), unsafe.Pointer(l2))
malloc.go#L775: *(*notInHeapSlice)(unsafe.Pointer(&h.allArenas)) = notInHeapSlice{newArray, len(h.allArenas), int(size / goarch.PtrSize)}
malloc.go#L790: atomic.StorepNoWB(unsafe.Pointer(&l2[ri.l2()]), unsafe.Pointer(r))
malloc.go#L804: func sysReserveAligned(v unsafe.Pointer, size, align uintptr) (unsafe.Pointer, uintptr) {
malloc.go#L815: return unsafe.Pointer(p), size + align
malloc.go#L821: sysFreeOS(unsafe.Pointer(p), size+align)
malloc.go#L823: p2 := sysReserve(unsafe.Pointer(p), size)
malloc.go#L837: sysFreeOS(unsafe.Pointer(p), pAligned-p)
malloc.go#L841: sysFreeOS(unsafe.Pointer(end), endLen)
malloc.go#L843: return unsafe.Pointer(pAligned), size
malloc.go#L879: l2 := (*[1 << arenaL2Bits]*heapArena)(atomic.Loadp(unsafe.Pointer(&h.arenas[i])))
malloc.go#L883: sysHugePage(unsafe.Pointer(l2), unsafe.Sizeof(*l2))
malloc.go#L952: func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {
malloc.go#L958: return unsafe.Pointer(&zerobase)
malloc.go#L1025: var x unsafe.Pointer
malloc.go#L1080: x = unsafe.Pointer(c.tiny + off)
malloc.go#L1093: x = unsafe.Pointer(v)
malloc.go#L1118: x = unsafe.Pointer(v)
malloc.go#L1131: x = unsafe.Pointer(span.base())
malloc.go#L1305: func memclrNoHeapPointersChunked(size uintptr, x unsafe.Pointer) {
malloc.go#L1320: memclrNoHeapPointers(unsafe.Pointer(voff), n)
malloc.go#L1327: func newobject(typ *_type) unsafe.Pointer {
malloc.go#L1332: func reflect_unsafe_New(typ *_type) unsafe.Pointer {
malloc.go#L1337: func reflectlite_unsafe_New(typ *_type) unsafe.Pointer {
malloc.go#L1342: func newarray(typ *_type, n int) unsafe.Pointer {
malloc.go#L1354: func reflect_unsafe_NewArray(typ *_type, n int) unsafe.Pointer {
malloc.go#L1358: func profilealloc(mp *m, x unsafe.Pointer, size uintptr) {
malloc.go#L1464: func persistentalloc(size, align uintptr, sysStat *sysMemStat) unsafe.Pointer {
malloc.go#L1469: return unsafe.Pointer(p)
malloc.go#L1519: chunks := uintptr(unsafe.Pointer(persistentChunks))
malloc.go#L1520: *(*uintptr)(unsafe.Pointer(persistent.base)) = chunks
malloc.go#L1521: if atomic.Casuintptr((*uintptr)(unsafe.Pointer(&persistentChunks)), chunks, uintptr(unsafe.Pointer(persistent.base))) {
malloc.go#L1547: chunk := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&persistentChunks)))
malloc.go#L1552: chunk = *(*uintptr)(unsafe.Pointer(chunk))
malloc.go#L1583: func (l *linearAlloc) alloc(size, align uintptr, sysStat *sysMemStat) unsafe.Pointer {
malloc.go#L1593: sysMap(unsafe.Pointer(l.mapped), n, sysStat)
malloc.go#L1594: sysUsed(unsafe.Pointer(l.mapped), n, n)
malloc.go#L1598: return unsafe.Pointer(p)
malloc.go#L1612: return (*notInHeap)(unsafe.Pointer(uintptr(unsafe.Pointer(p)) + bytes))
map.go#L126: buckets unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
map.go#L127: oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
map.go#L167: key unsafe.Pointer // Must be in first position. Write nil to indicate iteration end (see cmd/compile/internal/walk/range.go).
map.go#L168: elem unsafe.Pointer // Must be in second position (see cmd/compile/internal/walk/range.go).
map.go#L171: buckets unsafe.Pointer // bucket ptr at hash_iter initialization time
map.go#L210: return *(**bmap)(add(unsafe.Pointer(b), uintptr(t.BucketSize)-goarch.PtrSize))
map.go#L214: *(**bmap)(add(unsafe.Pointer(b), uintptr(t.BucketSize)-goarch.PtrSize)) = ovf
map.go#L217: func (b *bmap) keys() unsafe.Pointer {
map.go#L218: return add(unsafe.Pointer(b), dataOffset)
map.go#L255: h.extra.nextOverflow = (*bmap)(add(unsafe.Pointer(ovf), uintptr(t.BucketSize)))
map.go#L346: func makeBucketArray(t *maptype, b uint8, dirtyalloc unsafe.Pointer) (buckets unsafe.Pointer, nextOverflow *bmap) {
map.go#L396: func mapaccess1(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
map.go#L400: racereadpc(unsafe.Pointer(h), callerpc, pc)
map.go#L413: return unsafe.Pointer(&zeroVal[0])
map.go#L441: k := add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
map.go#L443: k = *((*unsafe.Pointer)(k))
map.go#L446: e := add(unsafe.Pointer(b), dataOffset+bucketCnt*uintptr(t.KeySize)+i*uintptr(t.ValueSize))
map.go#L448: e = *((*unsafe.Pointer)(e))
map.go#L454: return unsafe.Pointer(&zeroVal[0])
map.go#L457: func mapaccess2(t *maptype, h *hmap, key unsafe.Pointer) (unsafe.Pointer, bool) {
map.go#L461: racereadpc(unsafe.Pointer(h), callerpc, pc)
map.go#L474: return unsafe.Pointer(&zeroVal[0]), false
map.go#L502: k := add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
map.go#L504: k = *((*unsafe.Pointer)(k))
map.go#L507: e := add(unsafe.Pointer(b), dataOffset+bucketCnt*uintptr(t.KeySize)+i*uintptr(t.ValueSize))
map.go#L509: e = *((*unsafe.Pointer)(e))
map.go#L515: return unsafe.Pointer(&zeroVal[0]), false
map.go#L519: func mapaccessK(t *maptype, h *hmap, key unsafe.Pointer) (unsafe.Pointer, unsafe.Pointer) {
map.go#L546: k := add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
map.go#L548: k = *((*unsafe.Pointer)(k))
map.go#L551: e := add(unsafe.Pointer(b), dataOffset+bucketCnt*uintptr(t.KeySize)+i*uintptr(t.ValueSize))
map.go#L553: e = *((*unsafe.Pointer)(e))
map.go#L562: func mapaccess1_fat(t *maptype, h *hmap, key, zero unsafe.Pointer) unsafe.Pointer {
map.go#L564: if e == unsafe.Pointer(&zeroVal[0]) {
map.go#L570: func mapaccess2_fat(t *maptype, h *hmap, key, zero unsafe.Pointer) (unsafe.Pointer, bool) {
map.go#L572: if e == unsafe.Pointer(&zeroVal[0]) {
map.go#L579: func mapassign(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
map.go#L586: racewritepc(unsafe.Pointer(h), callerpc, pc)
map.go#L617: var insertk unsafe.Pointer
map.go#L618: var elem unsafe.Pointer
map.go#L625: insertk = add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
map.go#L626: elem = add(unsafe.Pointer(b), dataOffset+bucketCnt*uintptr(t.KeySize)+i*uintptr(t.ValueSize))
map.go#L633: k := add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
map.go#L635: k = *((*unsafe.Pointer)(k))
map.go#L644: elem = add(unsafe.Pointer(b), dataOffset+bucketCnt*uintptr(t.KeySize)+i*uintptr(t.ValueSize))
map.go#L667: insertk = add(unsafe.Pointer(newb), dataOffset)
map.go#L674: *(*unsafe.Pointer)(insertk) = kmem
map.go#L679: *(*unsafe.Pointer)(elem) = vmem
map.go#L691: elem = *((*unsafe.Pointer)(elem))
map.go#L696: func mapdelete(t *maptype, h *hmap, key unsafe.Pointer) {
map.go#L700: racewritepc(unsafe.Pointer(h), callerpc, pc)
map.go#L741: k := add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
map.go#L744: k2 = *((*unsafe.Pointer)(k2))
map.go#L751: *(*unsafe.Pointer)(k) = nil
map.go#L755: e := add(unsafe.Pointer(b), dataOffset+bucketCnt*uintptr(t.KeySize)+i*uintptr(t.ValueSize))
map.go#L757: *(*unsafe.Pointer)(e) = nil
map.go#L819: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapiterinit))
map.go#L871: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapiternext))
map.go#L921: k := add(unsafe.Pointer(b), dataOffset+uintptr(offi)*uintptr(t.KeySize))
map.go#L923: k = *((*unsafe.Pointer)(k))
map.go#L925: e := add(unsafe.Pointer(b), dataOffset+bucketCnt*uintptr(t.KeySize)+uintptr(offi)*uintptr(t.ValueSize))
map.go#L962: e = *((*unsafe.Pointer)(e))
map.go#L998: racewritepc(unsafe.Pointer(h), callerpc, pc)
map.go#L1012: markBucketsEmpty := func(bucket unsafe.Pointer, mask uintptr) {
map.go#L1165: k unsafe.Pointer // pointer to current key storage
map.go#L1166: e unsafe.Pointer // pointer to current elem storage
map.go#L1180: x.k = add(unsafe.Pointer(x.b), dataOffset)
map.go#L1188: y.k = add(unsafe.Pointer(y.b), dataOffset)
map.go#L1193: k := add(unsafe.Pointer(b), dataOffset)
map.go#L1206: k2 = *((*unsafe.Pointer)(k2))
map.go#L1244: dst.k = add(unsafe.Pointer(dst.b), dataOffset)
map.go#L1249: *(*unsafe.Pointer)(dst.k) = k2 // copy pointer
map.go#L1254: *(*unsafe.Pointer)(dst.e) = *(*unsafe.Pointer)(e)
map.go#L1349: func reflect_mapaccess(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
map.go#L1359: func reflect_mapaccess_faststr(t *maptype, h *hmap, key string) unsafe.Pointer {
map.go#L1369: func reflect_mapassign(t *maptype, h *hmap, key unsafe.Pointer, elem unsafe.Pointer) {
map.go#L1375: func reflect_mapassign_faststr(t *maptype, h *hmap, key string, elem unsafe.Pointer) {
map.go#L1381: func reflect_mapdelete(t *maptype, h *hmap, key unsafe.Pointer) {
map.go#L1401: func reflect_mapiterkey(it *hiter) unsafe.Pointer {
map.go#L1406: func reflect_mapiterelem(it *hiter) unsafe.Pointer {
map.go#L1417: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(reflect_maplen))
map.go#L1434: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(reflect_maplen))
map.go#L1454: e.data = unsafe.Pointer(mapclone2((*maptype)(unsafe.Pointer(e._type)), (*hmap)(e.data)))
map.go#L1477: srcK := add(unsafe.Pointer(src), dataOffset+uintptr(i)*uintptr(t.KeySize))
map.go#L1478: srcEle := add(unsafe.Pointer(src), dataOffset+bucketCnt*uintptr(t.KeySize)+uintptr(i)*uintptr(t.ValueSize))
map.go#L1479: dstK := add(unsafe.Pointer(dst), dataOffset+uintptr(pos)*uintptr(t.KeySize))
map.go#L1480: dstEle := add(unsafe.Pointer(dst), dataOffset+bucketCnt*uintptr(t.KeySize)+uintptr(pos)*uintptr(t.ValueSize))
map.go#L1484: *(*unsafe.Pointer)(dstK) = *(*unsafe.Pointer)(srcK)
map.go#L1489: *(*unsafe.Pointer)(dstEle) = *(*unsafe.Pointer)(srcEle)
map.go#L1579: srcK := add(unsafe.Pointer(srcBmap), dataOffset+i*uintptr(t.KeySize))
map.go#L1581: srcK = *((*unsafe.Pointer)(srcK))
map.go#L1584: srcEle := add(unsafe.Pointer(srcBmap), dataOffset+bucketCnt*uintptr(t.KeySize)+i*uintptr(t.ValueSize))
map.go#L1586: srcEle = *((*unsafe.Pointer)(srcEle))
map.go#L1600: func keys(m any, p unsafe.Pointer) {
map.go#L1602: t := (*maptype)(unsafe.Pointer(e._type))
map.go#L1647: k := add(unsafe.Pointer(b), dataOffset+offi*uintptr(t.KeySize))
map.go#L1649: k = *((*unsafe.Pointer)(k))
map.go#L1664: func values(m any, p unsafe.Pointer) {
map.go#L1666: t := (*maptype)(unsafe.Pointer(e._type))
map.go#L1712: ele := add(unsafe.Pointer(b), dataOffset+bucketCnt*uintptr(t.KeySize)+offi*uintptr(t.ValueSize))
map.go#L1714: ele = *((*unsafe.Pointer)(ele))
map_fast32.go#L13: func mapaccess1_fast32(t *maptype, h *hmap, key uint32) unsafe.Pointer {
map_fast32.go#L16: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapaccess1_fast32))
map_fast32.go#L19: return unsafe.Pointer(&zeroVal[0])
map_fast32.go#L29: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast32.go#L46: return add(unsafe.Pointer(b), dataOffset+bucketCnt*4+i*uintptr(t.ValueSize))
map_fast32.go#L50: return unsafe.Pointer(&zeroVal[0])
map_fast32.go#L53: func mapaccess2_fast32(t *maptype, h *hmap, key uint32) (unsafe.Pointer, bool) {
map_fast32.go#L56: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapaccess2_fast32))
map_fast32.go#L59: return unsafe.Pointer(&zeroVal[0]), false
map_fast32.go#L69: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast32.go#L86: return add(unsafe.Pointer(b), dataOffset+bucketCnt*4+i*uintptr(t.ValueSize)), true
map_fast32.go#L90: return unsafe.Pointer(&zeroVal[0]), false
map_fast32.go#L93: func mapassign_fast32(t *maptype, h *hmap, key uint32) unsafe.Pointer {
map_fast32.go#L99: racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_fast32))
map_fast32.go#L104: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast32.go#L122: var insertk unsafe.Pointer
map_fast32.go#L137: k := *((*uint32)(add(unsafe.Pointer(b), dataOffset+i*4)))
map_fast32.go#L168: insertk = add(unsafe.Pointer(insertb), dataOffset+inserti*4)
map_fast32.go#L175: elem := add(unsafe.Pointer(insertb), dataOffset+bucketCnt*4+inserti*uintptr(t.ValueSize))
map_fast32.go#L183: func mapassign_fast32ptr(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
map_fast32.go#L189: racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_fast32))
map_fast32.go#L194: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast32.go#L212: var insertk unsafe.Pointer
map_fast32.go#L227: k := *((*unsafe.Pointer)(add(unsafe.Pointer(b), dataOffset+i*4)))
map_fast32.go#L258: insertk = add(unsafe.Pointer(insertb), dataOffset+inserti*4)
map_fast32.go#L260: *(*unsafe.Pointer)(insertk) = key
map_fast32.go#L265: elem := add(unsafe.Pointer(insertb), dataOffset+bucketCnt*4+inserti*uintptr(t.ValueSize))
map_fast32.go#L276: racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapdelete_fast32))
map_fast32.go#L285: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast32.go#L308: *(*unsafe.Pointer)(k) = nil
map_fast32.go#L310: e := add(unsafe.Pointer(b), dataOffset+bucketCnt*4+i*uintptr(t.ValueSize))
map_fast32.go#L385: x.k = add(unsafe.Pointer(x.b), dataOffset)
map_fast32.go#L393: y.k = add(unsafe.Pointer(y.b), dataOffset)
map_fast32.go#L398: k := add(unsafe.Pointer(b), dataOffset)
map_fast32.go#L425: dst.k = add(unsafe.Pointer(dst.b), dataOffset)
map_fast32.go#L433: *(*unsafe.Pointer)(dst.k) = *(*unsafe.Pointer)(k)
map_fast64.go#L13: func mapaccess1_fast64(t *maptype, h *hmap, key uint64) unsafe.Pointer {
map_fast64.go#L16: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapaccess1_fast64))
map_fast64.go#L19: return unsafe.Pointer(&zeroVal[0])
map_fast64.go#L29: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast64.go#L46: return add(unsafe.Pointer(b), dataOffset+bucketCnt*8+i*uintptr(t.ValueSize))
map_fast64.go#L50: return unsafe.Pointer(&zeroVal[0])
map_fast64.go#L53: func mapaccess2_fast64(t *maptype, h *hmap, key uint64) (unsafe.Pointer, bool) {
map_fast64.go#L56: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapaccess2_fast64))
map_fast64.go#L59: return unsafe.Pointer(&zeroVal[0]), false
map_fast64.go#L69: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast64.go#L86: return add(unsafe.Pointer(b), dataOffset+bucketCnt*8+i*uintptr(t.ValueSize)), true
map_fast64.go#L90: return unsafe.Pointer(&zeroVal[0]), false
map_fast64.go#L93: func mapassign_fast64(t *maptype, h *hmap, key uint64) unsafe.Pointer {
map_fast64.go#L99: racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_fast64))
map_fast64.go#L104: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast64.go#L122: var insertk unsafe.Pointer
map_fast64.go#L137: k := *((*uint64)(add(unsafe.Pointer(b), dataOffset+i*8)))
map_fast64.go#L168: insertk = add(unsafe.Pointer(insertb), dataOffset+inserti*8)
map_fast64.go#L175: elem := add(unsafe.Pointer(insertb), dataOffset+bucketCnt*8+inserti*uintptr(t.ValueSize))
map_fast64.go#L183: func mapassign_fast64ptr(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
map_fast64.go#L189: racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_fast64))
map_fast64.go#L194: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast64.go#L212: var insertk unsafe.Pointer
map_fast64.go#L227: k := *((*unsafe.Pointer)(add(unsafe.Pointer(b), dataOffset+i*8)))
map_fast64.go#L258: insertk = add(unsafe.Pointer(insertb), dataOffset+inserti*8)
map_fast64.go#L260: *(*unsafe.Pointer)(insertk) = key
map_fast64.go#L265: elem := add(unsafe.Pointer(insertb), dataOffset+bucketCnt*8+inserti*uintptr(t.ValueSize))
map_fast64.go#L276: racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapdelete_fast64))
map_fast64.go#L285: hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
map_fast64.go#L305: *(*unsafe.Pointer)(k) = nil
map_fast64.go#L312: e := add(unsafe.Pointer(b), dataOffset+bucketCnt*8+i*uintptr(t.ValueSize))
map_fast64.go#L387: x.k = add(unsafe.Pointer(x.b), dataOffset)
map_fast64.go#L395: y.k = add(unsafe.Pointer(y.b), dataOffset)
map_fast64.go#L400: k := add(unsafe.Pointer(b), dataOffset)
map_fast64.go#L427: dst.k = add(unsafe.Pointer(dst.b), dataOffset)
map_fast64.go#L436: *(*unsafe.Pointer)(dst.k) = *(*unsafe.Pointer)(k)
map_faststr.go#L13: func mapaccess1_faststr(t *maptype, h *hmap, ky string) unsafe.Pointer {
map_faststr.go#L16: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapaccess1_faststr))
map_faststr.go#L19: return unsafe.Pointer(&zeroVal[0])
map_faststr.go#L39: return add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+i*uintptr(t.ValueSize))
map_faststr.go#L42: return unsafe.Pointer(&zeroVal[0])
map_faststr.go#L55: return add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+i*uintptr(t.ValueSize))
map_faststr.go#L72: k := (*stringStruct)(add(unsafe.Pointer(b), dataOffset+keymaybe*2*goarch.PtrSize))
map_faststr.go#L74: return add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+keymaybe*uintptr(t.ValueSize))
map_faststr.go#L77: return unsafe.Pointer(&zeroVal[0])
map_faststr.go#L80: hash := t.Hasher(noescape(unsafe.Pointer(&ky)), uintptr(h.hash0))
map_faststr.go#L101: return add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+i*uintptr(t.ValueSize))
map_faststr.go#L105: return unsafe.Pointer(&zeroVal[0])
map_faststr.go#L108: func mapaccess2_faststr(t *maptype, h *hmap, ky string) (unsafe.Pointer, bool) {
map_faststr.go#L111: racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapaccess2_faststr))
map_faststr.go#L114: return unsafe.Pointer(&zeroVal[0]), false
map_faststr.go#L134: return add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+i*uintptr(t.ValueSize)), true
map_faststr.go#L137: return unsafe.Pointer(&zeroVal[0]), false
map_faststr.go#L150: return add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+i*uintptr(t.ValueSize)), true
map_faststr.go#L167: k := (*stringStruct)(add(unsafe.Pointer(b), dataOffset+keymaybe*2*goarch.PtrSize))
map_faststr.go#L169: return add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+keymaybe*uintptr(t.ValueSize)), true
map_faststr.go#L172: return unsafe.Pointer(&zeroVal[0]), false
map_faststr.go#L175: hash := t.Hasher(noescape(unsafe.Pointer(&ky)), uintptr(h.hash0))
map_faststr.go#L196: return add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+i*uintptr(t.ValueSize)), true
map_faststr.go#L200: return unsafe.Pointer(&zeroVal[0]), false
map_faststr.go#L203: func mapassign_faststr(t *maptype, h *hmap, s string) unsafe.Pointer {
map_faststr.go#L209: racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_faststr))
map_faststr.go#L215: hash := t.Hasher(noescape(unsafe.Pointer(&s)), uintptr(h.hash0))
map_faststr.go#L234: var insertk unsafe.Pointer
map_faststr.go#L249: k := (*stringStruct)(add(unsafe.Pointer(b), dataOffset+i*2*goarch.PtrSize))
map_faststr.go#L287: insertk = add(unsafe.Pointer(insertb), dataOffset+inserti*2*goarch.PtrSize)
map_faststr.go#L293: elem := add(unsafe.Pointer(insertb), dataOffset+bucketCnt*2*goarch.PtrSize+inserti*uintptr(t.ValueSize))
map_faststr.go#L304: racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapdelete_faststr))
map_faststr.go#L314: hash := t.Hasher(noescape(unsafe.Pointer(&ky)), uintptr(h.hash0))
map_faststr.go#L338: e := add(unsafe.Pointer(b), dataOffset+bucketCnt*2*goarch.PtrSize+i*uintptr(t.ValueSize))
map_faststr.go#L413: x.k = add(unsafe.Pointer(x.b), dataOffset)
map_faststr.go#L421: y.k = add(unsafe.Pointer(y.b), dataOffset)
map_faststr.go#L426: k := add(unsafe.Pointer(b), dataOffset)
map_faststr.go#L453: dst.k = add(unsafe.Pointer(dst.b), dataOffset)
mbarrier.go#L152: func typedmemmove(typ *abi.Type, dst, src unsafe.Pointer) {
mbarrier.go#L178: func wbZero(typ *_type, dst unsafe.Pointer) {
mbarrier.go#L188: func wbMove(typ *_type, dst, src unsafe.Pointer) {
mbarrier.go#L193: func reflect_typedmemmove(typ *_type, dst, src unsafe.Pointer) {
mbarrier.go#L210: func reflectlite_typedmemmove(typ *_type, dst, src unsafe.Pointer) {
mbarrier.go#L224: func reflectcallmove(typ *_type, dst, src unsafe.Pointer, size uintptr, regs *abi.RegArgs) {
mbarrier.go#L233: regs.Ptrs[i] = unsafe.Pointer(regs.Ints[i])
mbarrier.go#L239: func typedslicecopy(typ *_type, dstPtr unsafe.Pointer, dstLen int, srcPtr unsafe.Pointer, srcLen int) int {
mbarrier.go#L309: func typedmemclr(typ *_type, ptr unsafe.Pointer) {
mbarrier.go#L317: func reflect_typedmemclr(typ *_type, ptr unsafe.Pointer) {
mbarrier.go#L322: func reflect_typedmemclrpartial(typ *_type, ptr unsafe.Pointer, off, size uintptr) {
mbarrier.go#L330: func reflect_typedarrayclear(typ *_type, ptr unsafe.Pointer, len int) {
mbarrier.go#L344: func memclrHasPointers(ptr unsafe.Pointer, n uintptr) {
mbitmap.go#L57: return (*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(p)) + n))
mbitmap.go#L68: return (*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(p)) - n))
mbitmap.go#L79: return (*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(p)) + 1))
mbitmap.go#L92: return (*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(p)) - 1))
mbitmap.go#L121: bytes := (*[8]uint8)(unsafe.Pointer(s.allocBits.bytep(whichByte)))
mbitmap.go#L282: m.bytep = (*uint8)(unsafe.Pointer(uintptr(unsafe.Pointer(m.bytep)) + 1))
mbitmap.go#L582: dstx := (*uintptr)(unsafe.Pointer(addr))
mbitmap.go#L592: dstx := (*uintptr)(unsafe.Pointer(addr))
mbitmap.go#L593: srcx := (*uintptr)(unsafe.Pointer(src + (addr - dst)))
mbitmap.go#L625: srcx := (*uintptr)(unsafe.Pointer(addr - dst + src))
mbitmap.go#L656: dstx := (*uintptr)(unsafe.Pointer(dst + i))
mbitmap.go#L661: srcx := (*uintptr)(unsafe.Pointer(src + i))
mbitmap.go#L714: dstx := (*uintptr)(unsafe.Pointer(dst + i))
mbitmap.go#L715: srcx := (*uintptr)(unsafe.Pointer(src + i))
mbitmap.go#L764: mrkBits := *(*uint64)(unsafe.Pointer(s.gcmarkBits.bytep(i)))
mbitmap.go#L913: x := *(*uintptr)(unsafe.Pointer(p))
mbitmap.go#L977: obj := (*uint8)(unsafe.Pointer(x))
mbitmap.go#L1002: memclrNoHeapPointers(unsafe.Pointer(obj), (n+7)/8)
mbitmap.go#L1332: totalBits := (uintptr(unsafe.Pointer(dst))-uintptr(unsafe.Pointer(dstStart)))*8 + nbits
mbitmap.go#L1353: runGCProg(addb(prog, 4), (*byte)(unsafe.Pointer(s.startAddr)))
mbitmap.go#L1427: n := (*ptrtype)(unsafe.Pointer(t)).Elem.Size_
mbitmap.go#L1439: n := (*ptrtype)(unsafe.Pointer(t)).Elem.Size_
mbitmap.go#L1487: n := (*ptrtype)(unsafe.Pointer(t)).Elem.Size_
mcache.go#L74: return (*gclink)(unsafe.Pointer(p))
mcache.go#L117: mheap_.cachealloc.free(unsafe.Pointer(c))
mem.go#L49: func sysAlloc(n uintptr, sysStat *sysMemStat) unsafe.Pointer {
mem.go#L60: func sysUnused(v unsafe.Pointer, n uintptr) {
mem.go#L75: func sysUsed(v unsafe.Pointer, n, prepared uintptr) {
mem.go#L83: func sysHugePage(v unsafe.Pointer, n uintptr) {
mem.go#L90: func sysNoHugePage(v unsafe.Pointer, n uintptr) {
mem.go#L96: func sysHugePageCollapse(v unsafe.Pointer, n uintptr) {
mem.go#L113: func sysFree(v unsafe.Pointer, n uintptr, sysStat *sysMemStat) {
mem.go#L128: func sysFault(v unsafe.Pointer, n uintptr) {
mem.go#L145: func sysReserve(v unsafe.Pointer, n uintptr) unsafe.Pointer {
mem.go#L153: func sysMap(v unsafe.Pointer, n uintptr, sysStat *sysMemStat) {
mem_linux.go#L21: func sysAllocOS(n uintptr) unsafe.Pointer {
mem_linux.go#L41: func sysUnusedOS(v unsafe.Pointer, n uintptr) {
mem_linux.go#L84: func sysUsedOS(v unsafe.Pointer, n uintptr) {
mem_linux.go#L97: func sysHugePageOS(v unsafe.Pointer, n uintptr) {
mem_linux.go#L105: madvise(unsafe.Pointer(beg), end-beg, _MADV_HUGEPAGE)
mem_linux.go#L110: func sysNoHugePageOS(v unsafe.Pointer, n uintptr) {
mem_linux.go#L119: func sysHugePageCollapseOS(v unsafe.Pointer, n uintptr) {
mem_linux.go#L148: func sysFreeOS(v unsafe.Pointer, n uintptr) {
mem_linux.go#L152: func sysFaultOS(v unsafe.Pointer, n uintptr) {
mem_linux.go#L156: func sysReserveOS(v unsafe.Pointer, n uintptr) unsafe.Pointer {
mem_linux.go#L164: func sysMapOS(v unsafe.Pointer, n uintptr) {
metrics.go#L46: raceacquire(unsafe.Pointer(&metricsSema))
metrics.go#L52: racerelease(unsafe.Pointer(&metricsSema))
metrics.go#L760: pointer unsafe.Pointer // contains non-scalar values.
metrics.go#L773: v.pointer = unsafe.Pointer(hist)
metrics.go#L825: func readMetrics(samplesp unsafe.Pointer, len int, cap int) {
metrics.go#L828: samples := *(*[]metricSample)(unsafe.Pointer(&sl))
mfinal.go#L54: arg unsafe.Pointer // ptr to object (may be a heap pointer)
mfinal.go#L94: func queuefinalizer(p unsafe.Pointer, fn *funcval, nret uintptr, fint *_type, ot *ptrtype) {
mfinal.go#L144: func iterate_finq(callback func(*funcval, unsafe.Pointer, uintptr, *_type, *ptrtype)) {
mfinal.go#L167: func finalizercommit(gp *g, lock unsafe.Pointer) bool {
mfinal.go#L178: frame unsafe.Pointer
mfinal.go#L193: gopark(finalizercommit, unsafe.Pointer(&finlock), waitReasonFinalizerWait, traceBlockSystemGoroutine, 1)
mfinal.go#L229: r = unsafe.Pointer(®s.Ints)
mfinal.go#L240: *(*unsafe.Pointer)(r) = f.arg
mfinal.go#L242: ityp := (*interfacetype)(unsafe.Pointer(f.fint))
mfinal.go#L255: reflectcall(nil, unsafe.Pointer(f.fn), frame, uint32(framesz), uint32(framesz), uint32(framesz), ®s)
mfinal.go#L277: func isGoPointerWithoutSpan(p unsafe.Pointer) bool {
mfinal.go#L279: if p == unsafe.Pointer(&zerobase) {
mfinal.go#L402: ot := (*ptrtype)(unsafe.Pointer(etyp))
mfinal.go#L443: ft := (*functype)(unsafe.Pointer(ftyp))
mfinal.go#L456: if (fint.Uncommon() == nil || etyp.Uncommon() == nil) && (*ptrtype)(unsafe.Pointer(fint)).Elem == ot.Elem {
mfinal.go#L462: ityp := (*interfacetype)(unsafe.Pointer(fint))
mfixalloc.go#L33: first func(arg, p unsafe.Pointer) // called first time p is returned
mfixalloc.go#L34: arg unsafe.Pointer
mfixalloc.go#L56: func (f *fixalloc) init(size uintptr, first func(arg, p unsafe.Pointer), arg unsafe.Pointer, stat *sysMemStat) {
mfixalloc.go#L76: func (f *fixalloc) alloc() unsafe.Pointer {
mfixalloc.go#L83: v := unsafe.Pointer(f.list)
mfixalloc.go#L96: v := unsafe.Pointer(f.chunk)
mfixalloc.go#L106: func (f *fixalloc) free(p unsafe.Pointer) {
mgc.go#L1295: gopark(func(g *g, nodep unsafe.Pointer) bool {
mgc.go#L1322: }, unsafe.Pointer(node), waitReasonGCWorkerIdle, traceBlockSystemGoroutine, 0)
mgc.go#L1632: var boringCaches []unsafe.Pointer // for crypto/internal/boring
mgc.go#L1640: func boring_registerCache(p unsafe.Pointer) {
mgc.go#L1738: func gcTestIsReachable(ptrs ...unsafe.Pointer) (mask uint64) {
mgc.go#L1784: mheap_.specialReachableAlloc.free(unsafe.Pointer(s))
mgc.go#L1799: func gcTestPointerClass(p unsafe.Pointer) string {
mgcmark.go#L183: scanblock(uintptr(unsafe.Pointer(&fb.fin[0])), cnt*unsafe.Sizeof(fb.fin[0]), &finptrmask[0], gcw, nil)
mgcmark.go#L278: ptrmask := (*uint8)(add(unsafe.Pointer(ptrmask0), uintptr(shard)*(rootBlockBytes/(8*goarch.PtrSize))))
mgcmark.go#L383: spf := (*specialfinalizer)(unsafe.Pointer(sp))
mgcmark.go#L395: scanblock(uintptr(unsafe.Pointer(&spf.fn)), goarch.PtrSize, &oneptrmask[0], gcw, nil)
mgcmark.go#L595: gp.param = unsafe.Pointer(gp)
mgcmark.go#L797: scanblock(uintptr(unsafe.Pointer(&gp.sched.ctxt)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
mgcmark.go#L814: scanblock(uintptr(unsafe.Pointer(&d.fn)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
mgcmark.go#L819: scanblock(uintptr(unsafe.Pointer(&d.link)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
mgcmark.go#L825: scanblock(uintptr(unsafe.Pointer(&d)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
mgcmark.go#L830: state.putPtr(uintptr(unsafe.Pointer(gp._panic)), false)
mgcmark.go#L876: gcdata = (*byte)(unsafe.Pointer(s.startAddr))
mgcmark.go#L907: putempty((*workbuf)(unsafe.Pointer(x)))
mgcmark.go#L1235: p := *(*uintptr)(unsafe.Pointer(b + i))
mgcmark.go#L1321: obj := *(*uintptr)(unsafe.Pointer(addr))
mgcmark.go#L1365: val := *(*uintptr)(unsafe.Pointer(p))
mgcmark.go#L1405: val := *(*uintptr)(unsafe.Pointer(b + i))
mgcmark.go#L1546: print(" *(", label, "+", i, ") = ", hex(*(*uintptr)(unsafe.Pointer(obj + i))))
mgcscavenge.go#L784: sysUnused(unsafe.Pointer(addr), uintptr(npages)*pageSize)
mgcstack.go#L163: *(*uintptr)(unsafe.Pointer(&obj.r)) = uintptr(unsafe.Pointer(r))
mgcstack.go#L215: buf = (*stackWorkBuf)(unsafe.Pointer(getempty()))
mgcstack.go#L224: buf = (*stackWorkBuf)(unsafe.Pointer(getempty()))
mgcstack.go#L249: putempty((*workbuf)(unsafe.Pointer(s.freeBuf)))
mgcstack.go#L265: putempty((*workbuf)(unsafe.Pointer(s.freeBuf)))
mgcstack.go#L276: x = (*stackObjectBuf)(unsafe.Pointer(getempty()))
mgcstack.go#L286: y := (*stackObjectBuf)(unsafe.Pointer(getempty()))
mgcsweep.go#L576: freeSpecial(special, unsafe.Pointer(p), size)
mgcsweep.go#L588: (*specialReachable)(unsafe.Pointer(special)).reachable = true
mgcsweep.go#L589: freeSpecial(special, unsafe.Pointer(p), size)
mgcsweep.go#L609: tracefree(unsafe.Pointer(x), size)
mgcsweep.go#L612: clobberfree(unsafe.Pointer(x), size)
mgcsweep.go#L616: racefree(unsafe.Pointer(x), size)
mgcsweep.go#L619: msanfree(unsafe.Pointer(x), size)
mgcsweep.go#L622: asanpoison(unsafe.Pointer(x), size)
mgcsweep.go#L790: sysFault(unsafe.Pointer(s.base()), size)
mgcsweep.go#L934: func clobberfree(x unsafe.Pointer, size uintptr) {
mgcwork.go#L391: newb := (*workbuf)(unsafe.Pointer(s.base() + i))
mgcwork.go#L443: memmove(unsafe.Pointer(&b1.obj[0]), unsafe.Pointer(&b.obj[b.nobj]), uintptr(n)*unsafe.Sizeof(b1.obj[0]))
mheap.go#L532: func recordspan(vh unsafe.Pointer, p unsafe.Pointer) {
mheap.go#L544: sp := (*slice)(unsafe.Pointer(&new))
mheap.go#L555: *(*notInHeapSlice)(unsafe.Pointer(&h.allspans)) = *(*notInHeapSlice)(unsafe.Pointer(&new))
mheap.go#L557: sysFree(unsafe.Pointer(&oldAllspans[0]), uintptr(cap(oldAllspans))*unsafe.Sizeof(oldAllspans[0]), &memstats.other_sys)
mheap.go#L756: h.spanalloc.init(unsafe.Sizeof(mspan{}), recordspan, unsafe.Pointer(h), &memstats.mspan_sys)
mheap.go#L1155: h.spanalloc.free(unsafe.Pointer(s))
mheap.go#L1351: sysUsed(unsafe.Pointer(base), nbytes, scav)
mheap.go#L1502: sysMap(unsafe.Pointer(h.curArena.base), size, &gcController.heapReleased)
mheap.go#L1533: sysMap(unsafe.Pointer(v), nBase-v, &gcController.heapReleased)
mheap.go#L1556: base := unsafe.Pointer(s.base())
mheap.go#L1562: base := unsafe.Pointer(s.base())
mheap.go#L1838: func addspecial(p unsafe.Pointer, s *special) bool {
mheap.go#L1873: func removespecial(p unsafe.Pointer, kind uint8) *special {
mheap.go#L1942: func addfinalizer(p unsafe.Pointer, f *funcval, nret uintptr, fint *_type, ot *ptrtype) bool {
mheap.go#L1967: scanblock(uintptr(unsafe.Pointer(&s.fn)), goarch.PtrSize, &oneptrmask[0], gcw, nil)
mheap.go#L1975: mheap_.specialfinalizeralloc.free(unsafe.Pointer(s))
mheap.go#L1981: func removefinalizer(p unsafe.Pointer) {
mheap.go#L1982: s := (*specialfinalizer)(unsafe.Pointer(removespecial(p, _KindSpecialFinalizer)))
mheap.go#L1987: mheap_.specialfinalizeralloc.free(unsafe.Pointer(s))
mheap.go#L1999: func setprofilebucket(p unsafe.Pointer, b *bucket) {
mheap.go#L2054: func freeSpecial(s *special, p unsafe.Pointer, size uintptr) {
mheap.go#L2057: sf := (*specialfinalizer)(unsafe.Pointer(s))
mheap.go#L2060: mheap_.specialfinalizeralloc.free(unsafe.Pointer(sf))
mheap.go#L2063: sp := (*specialprofile)(unsafe.Pointer(s))
mheap.go#L2066: mheap_.specialprofilealloc.free(unsafe.Pointer(sp))
mheap.go#L2069: sp := (*specialReachable)(unsafe.Pointer(s))
mheap.go#L2074: mheap_.specialPinCounterAlloc.free(unsafe.Pointer(s))
mheap.go#L2146: head := (*gcBitsArena)(atomic.Loadp(unsafe.Pointer(&gcBitsArenas.next)))
mheap.go#L2185: atomic.StorepNoWB(unsafe.Pointer(&gcBitsArenas.next), unsafe.Pointer(fresh))
mheap.go#L2231: atomic.StorepNoWB(unsafe.Pointer(&gcBitsArenas.next), nil) // newMarkBits calls newArena when needed
mheap.go#L2249: memclrNoHeapPointers(unsafe.Pointer(result), gcBitsChunkBytes)
mheap.go#L2257: result.free = 8 - (uintptr(unsafe.Pointer(&result.bits[0])) & 7)
minmax.go#L57: *(*uint32)(unsafe.Pointer(&x)) |= *(*uint32)(unsafe.Pointer(&y))
minmax.go#L59: *(*uint64)(unsafe.Pointer(&x)) |= *(*uint64)(unsafe.Pointer(&y))
minmax.go#L67: *(*uint32)(unsafe.Pointer(&x)) &= *(*uint32)(unsafe.Pointer(&y))
minmax.go#L69: *(*uint64)(unsafe.Pointer(&x)) &= *(*uint64)(unsafe.Pointer(&y))
mpagealloc.go#L420: *(*uintptr)(unsafe.Pointer(&p.chunks[c.l1()])) = uintptr(r)
mpagealloc.go#L472: sysHugePage(unsafe.Pointer(p.chunks[i]), unsafe.Sizeof(*p.chunks[0]))
mpagealloc_64bit.go#L86: p.summary[l] = *(*[]pallocSum)(unsafe.Pointer(&sl))
mpagealloc_64bit.go#L120: base := unsafe.Pointer(&p.summary[level][0])
mpagealloc_64bit.go#L179: sysMap(unsafe.Pointer(need.base.addr()), need.size(), p.sysStat)
mpagealloc_64bit.go#L180: sysUsed(unsafe.Pointer(need.base.addr()), need.size(), need.size())
mpagealloc_64bit.go#L221: uintptr(unsafe.Pointer(&s.chunks[0]))+haveMin*scSize,
mpagealloc_64bit.go#L222: uintptr(unsafe.Pointer(&s.chunks[0]))+haveMax*scSize,
mpagealloc_64bit.go#L226: uintptr(unsafe.Pointer(&s.chunks[0]))+needMin*scSize,
mpagealloc_64bit.go#L227: uintptr(unsafe.Pointer(&s.chunks[0]))+needMax*scSize,
mpagealloc_64bit.go#L235: sysMap(unsafe.Pointer(need.base.addr()), need.size(), sysStat)
mpagealloc_64bit.go#L236: sysUsed(unsafe.Pointer(need.base.addr()), need.size(), need.size())
mpagealloc_64bit.go#L256: s.chunks = *(*[]atomicScavChunkData)(unsafe.Pointer(&sl))
mprof.go#L233: stk := (*[maxStack]uintptr)(add(unsafe.Pointer(b), unsafe.Sizeof(*b)))
mprof.go#L242: data := add(unsafe.Pointer(b), unsafe.Sizeof(*b)+b.nstk*unsafe.Sizeof(uintptr(0)))
mprof.go#L251: data := add(unsafe.Pointer(b), unsafe.Sizeof(*b)+b.nstk*unsafe.Sizeof(uintptr(0)))
mprof.go#L267: buckhash.StoreNoWB(unsafe.Pointer(bh))
mprof.go#L326: bh[i].StoreNoWB(unsafe.Pointer(b))
mprof.go#L327: allnext.StoreNoWB(unsafe.Pointer(b))
mprof.go#L418: func mProf_Malloc(p unsafe.Pointer, size uintptr) {
mprof.go#L713: racewriterangepc(unsafe.Pointer(&r.Stack0[0]), unsafe.Sizeof(r.Stack0), getcallerpc(), abi.FuncPCABIInternal(MemProfile))
mprof.go#L716: msanwrite(unsafe.Pointer(&r.Stack0[0]), unsafe.Sizeof(r.Stack0))
mprof.go#L719: asanwrite(unsafe.Pointer(&r.Stack0[0]), unsafe.Sizeof(r.Stack0))
mprof.go#L771: racewriterangepc(unsafe.Pointer(&r.Stack0[0]), unsafe.Sizeof(r.Stack0), getcallerpc(), abi.FuncPCABIInternal(BlockProfile))
mprof.go#L774: msanwrite(unsafe.Pointer(&r.Stack0[0]), unsafe.Sizeof(r.Stack0))
mprof.go#L777: asanwrite(unsafe.Pointer(&r.Stack0[0]), unsafe.Sizeof(r.Stack0))
mprof.go#L827: first := (*m)(atomic.Loadp(unsafe.Pointer(&allm)))
mprof.go#L843: func runtime_goroutineProfileWithLabels(p []StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L848: func goroutineProfileWithLabels(p []StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L861: labels []unsafe.Pointer
mprof.go#L899: func goroutineProfileWithLabelsConcurrent(p []StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L983: raceacquire(unsafe.Pointer(&labelSync))
mprof.go#L1095: func goroutineProfileWithLabelsSync(p []StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1157: raceacquire(unsafe.Pointer(&labelSync))
mprof.go#L1226: func tracealloc(p unsafe.Pointer, size uintptr, typ *_type) {
mprof.go#L1251: func tracefree(p unsafe.Pointer, size uintptr) {
mranges.go#L255: ranges := (*notInHeapSlice)(unsafe.Pointer(&a.ranges))
mranges.go#L382: ranges := (*notInHeapSlice)(unsafe.Pointer(&a.ranges))
mranges.go#L452: ranges := (*notInHeapSlice)(unsafe.Pointer(&b.ranges))
msan0.go#L19: func msanread(addr unsafe.Pointer, sz uintptr) { throw("msan") }
msan0.go#L20: func msanwrite(addr unsafe.Pointer, sz uintptr) { throw("msan") }
msan0.go#L21: func msanmalloc(addr unsafe.Pointer, sz uintptr) { throw("msan") }
msan0.go#L22: func msanfree(addr unsafe.Pointer, sz uintptr) { throw("msan") }
msan0.go#L23: func msanmove(dst, src unsafe.Pointer, sz uintptr) { throw("msan") }
mspanset.go#L294: p unsafe.Pointer
mspanset.go#L299: return (*atomic.Pointer[spanSetBlock])(add(unsafe.Pointer(s.p), goarch.PtrSize*idx))
mspanset.go#L403: p.p.StoreNoWB(unsafe.Pointer(s))
mwbbuf.go#L79: start := uintptr(unsafe.Pointer(&b.buf[0]))
mwbbuf.go#L85: b.end = uintptr(unsafe.Pointer(&b.buf[wbMaxEntriesPerCall+1]))
mwbbuf.go#L101: b.next = uintptr(unsafe.Pointer(&b.buf[0]))
mwbbuf.go#L106: return b.next == uintptr(unsafe.Pointer(&b.buf[0]))
mwbbuf.go#L135: p := (*[1]uintptr)(unsafe.Pointer(b.next))
mwbbuf.go#L146: p := (*[2]uintptr)(unsafe.Pointer(b.next))
mwbbuf.go#L197: start := uintptr(unsafe.Pointer(&pp.wbBuf.buf[0]))
netpoll.go#L517: func netpollblockcommit(gp *g, gpp unsafe.Pointer) bool {
netpoll.go#L518: r := atomic.Casuintptr((*uintptr)(gpp), pdWait, uintptr(unsafe.Pointer(gp)))
netpoll.go#L564: gopark(netpollblockcommit, unsafe.Pointer(gpp), waitReasonIOWait, traceBlockNet, 5)
netpoll.go#L598: return (*g)(unsafe.Pointer(old))
netpoll.go#L685: x := (*eface)(unsafe.Pointer(&i))
netpoll.go#L687: x.data = unsafe.Pointer(&pd.self)
netpoll_epoll.go#L38: *(**uintptr)(unsafe.Pointer(&ev.Data)) = &netpollBreakRd
netpoll_epoll.go#L55: tp := taggedPointerPack(unsafe.Pointer(pd), pd.fdseq.Load())
netpoll_epoll.go#L56: *(*taggedPointer)(unsafe.Pointer(&ev.Data)) = tp
netpoll_epoll.go#L78: n := write(netpollBreakWr, unsafe.Pointer(&b), 1)
netpoll_epoll.go#L138: if *(**uintptr)(unsafe.Pointer(&ev.Data)) == &netpollBreakRd {
netpoll_epoll.go#L148: read(int32(netpollBreakRd), noescape(unsafe.Pointer(&tmp[0])), int32(len(tmp)))
netpoll_epoll.go#L162: tp := *(*taggedPointer)(unsafe.Pointer(&ev.Data))
os_linux.go#L37: func futex(addr unsafe.Pointer, op int32, val uint32, ts, addr2 unsafe.Pointer, val3 uint32) int32
os_linux.go#L69: futex(unsafe.Pointer(addr), _FUTEX_WAIT_PRIVATE, val, nil, nil, 0)
os_linux.go#L75: futex(unsafe.Pointer(addr), _FUTEX_WAIT_PRIVATE, val, unsafe.Pointer(&ts), nil, 0)
os_linux.go#L82: ret := futex(unsafe.Pointer(addr), _FUTEX_WAKE_PRIVATE, cnt, nil, nil, 0)
os_linux.go#L94: *(*int32)(unsafe.Pointer(uintptr(0x1006))) = 0x1006
os_linux.go#L161: func clone(flags int32, stk, mp, gp, fn unsafe.Pointer) int32
os_linux.go#L167: stk := unsafe.Pointer(mp.g0.stack.hi)
os_linux.go#L180: r := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(abi.FuncPCABI0(mstart)))
os_linux.go#L202: func newosproc0(stacksize uintptr, fn unsafe.Pointer) {
os_linux.go#L208: ret := clone(cloneFlags, unsafe.Pointer(uintptr(stack)+stacksize), nil, nil, fn)
os_linux.go#L228: func mincore(addr unsafe.Pointer, n uintptr, dst *byte) int32
os_linux.go#L244: auxvp := (*[1 << 28]uintptr)(add(unsafe.Pointer(argv), uintptr(n)*goarch.PtrSize))
os_linux.go#L265: err := mincore(unsafe.Pointer(uintptr(p)+n), 1, &addrspace_vec[0])
os_linux.go#L278: n = read(fd, noescape(unsafe.Pointer(&auxvreadbuf[0])), int32(unsafe.Sizeof(auxvreadbuf)))
os_linux.go#L305: startupRandomData = (*[16]byte)(unsafe.Pointer(val))[:]
os_linux.go#L328: ptr := noescape(unsafe.Pointer(&numbuf[0]))
os_linux.go#L379: n := read(fd, unsafe.Pointer(&r[0]), int32(len(r)))
os_linux.go#L534: *(*uintptr)(unsafe.Pointer(&s.ss_sp)) = sp
panic.go#L335: *(*uintptr)(unsafe.Pointer(&d._panic)) = 0
panic.go#L336: *(*uintptr)(unsafe.Pointer(&d.fd)) = 0
panic.go#L337: *(*uintptr)(unsafe.Pointer(&d.link)) = uintptr(unsafe.Pointer(gp._defer))
panic.go#L338: *(*uintptr)(unsafe.Pointer(&gp._defer)) = uintptr(unsafe.Pointer(d))
panic.go#L500: gp._panic = (*_panic)(noescape(unsafe.Pointer(&p)))
panic.go#L502: addOneOpenDeferFrame(gp, getcallerpc(), unsafe.Pointer(getcallersp()))
panic.go#L521: d._panic = (*_panic)(noescape(unsafe.Pointer(&p)))
panic.go#L534: addOneOpenDeferFrame(gp, getcallerpc(), unsafe.Pointer(getcallersp()))
panic.go#L638: func addOneOpenDeferFrame(gp *g, pc uintptr, sp unsafe.Pointer) {
panic.go#L643: sp = unsafe.Pointer(prevDefer.sp)
panic.go#L728: func readvarintUnsafe(fd unsafe.Pointer) (uint32, unsafe.Pointer) {
panic.go#L732: b := *(*uint8)((unsafe.Pointer(fd)))
panic.go#L755: deferBits := *(*uint8)(unsafe.Pointer(d.varp - uintptr(deferBitsOffset)))
panic.go#L764: closure := *(*func())(unsafe.Pointer(d.varp - uintptr(closureOffset)))
panic.go#L767: *(*uint8)(unsafe.Pointer(d.varp - uintptr(deferBitsOffset))) = deferBits
panic.go#L794: p.argp = unsafe.Pointer(getargp())
panic.go#L796: p.sp = unsafe.Pointer(getcallersp())
panic.go#L801: p.sp = unsafe.Pointer(nil)
panic.go#L868: gp._panic = (*_panic)(noescape(unsafe.Pointer(&p)))
panic.go#L874: addOneOpenDeferFrame(gp, getcallerpc(), unsafe.Pointer(getcallersp()))
panic.go#L910: d._panic = (*_panic)(noescape(unsafe.Pointer(&p)))
panic.go#L919: p.argp = unsafe.Pointer(getargp())
panic.go#L934: sp := unsafe.Pointer(d.sp) // must be pointer so it gets adjusted during stack copy
panic.go#L1137: gp.sched.bp = *(*uintptr)(unsafe.Pointer(sp - 2*goarch.PtrSize))
pinner.go#L84: pinnerRefStoreSize = (pinnerSize - unsafe.Sizeof([]unsafe.Pointer{})) / unsafe.Sizeof(unsafe.Pointer(nil))
pinner.go#L88: refs []unsafe.Pointer
pinner.go#L89: refStore [pinnerRefStoreSize]unsafe.Pointer
pinner.go#L102: p.refStore = [pinnerRefStoreSize]unsafe.Pointer{}
pinner.go#L106: func pinnerGetPtr(i *any) unsafe.Pointer {
pinner.go#L126: func isPinned(ptr unsafe.Pointer) bool {
pinner.go#L147: func setPinned(ptr unsafe.Pointer, pin bool) {
pinner.go#L282: return (*pinnerBits)(atomic.Loadp(unsafe.Pointer(&s.pinnerBits)))
pinner.go#L286: atomicstorep(unsafe.Pointer(&s.pinnerBits), unsafe.Pointer(p))
pinner.go#L305: for _, x := range unsafe.Slice((*uint64)(unsafe.Pointer(&p.x)), bytes/8) {
pinner.go#L314: memmove(unsafe.Pointer(&newPinnerBits.x), unsafe.Pointer(&p.x), bytes)
pinner.go#L334: *ref = (*special)(unsafe.Pointer(rec))
pinner.go#L337: rec = (*specialPinCounter)(unsafe.Pointer(*ref))
pinner.go#L349: counter := (*specialPinCounter)(unsafe.Pointer(*ref))
pinner.go#L357: mheap_.specialPinCounterAlloc.free(unsafe.Pointer(counter))
pinner.go#L365: func pinnerGetPinCounter(addr unsafe.Pointer) *uintptr {
pinner.go#L372: counter := (*specialPinCounter)(unsafe.Pointer(*t))
plugin.go#L81: symName := resolveNameOff(unsafe.Pointer(md.types), ptab.name)
plugin.go#L82: t := toRType((*_type)(unsafe.Pointer(md.types))).typeOff(ptab.typ) // TODO can this stack of conversions be simpler?
plugin.go#L84: valp := (*[2]unsafe.Pointer)(unsafe.Pointer(&val))
plugin.go#L85: (*valp)[0] = unsafe.Pointer(t)
plugin.go#L104: f := funcInfo{(*_func)(unsafe.Pointer(&md.pclntable[md.ftab[i].funcoff])), md}
print.go#L17: rp := (*slice)(unsafe.Pointer(&ret))
print.go#L238: func printpointer(p unsafe.Pointer) {
print.go#L250: sp := (*slice)(unsafe.Pointer(&s))
print.go#L288: val := *(*uintptr)(unsafe.Pointer(p + i))
proc.go#L381: func gopark(unlockf func(*g, unsafe.Pointer) bool, lock unsafe.Pointer, reason waitReason, traceReason traceBlockReason, traceskip int) {
proc.go#L404: gopark(parkunlock_c, unsafe.Pointer(lock), reason, traceReason, traceskip)
proc.go#L570: atomicstorep(unsafe.Pointer(&allgptr), unsafe.Pointer(&allgs[0]))
proc.go#L593: ptr := (**g)(atomic.Loadp(unsafe.Pointer(&allgptr)))
proc.go#L599: return *(**g)(add(unsafe.Pointer(ptr), i*goarch.PtrSize))
proc.go#L863: atomicstorep(unsafe.Pointer(&allm), unsafe.Pointer(mp))
proc.go#L885: s := (*[unsafe.Sizeof(fastrandseed)]byte)(unsafe.Pointer(&fastrandseed))[:]
proc.go#L1548: gp.stack.hi = uintptr(noescape(unsafe.Pointer(&size)))
proc.go#L1586: gp.sched.g = guintptr(unsafe.Pointer(gp))
proc.go#L1872: var cgoThreadStart unsafe.Pointer
proc.go#L1877: fn unsafe.Pointer
proc.go#L2056: asmcgocall(_cgo_getstackbound, unsafe.Pointer(&bounds))
proc.go#L2118: gp.sched.g = guintptr(unsafe.Pointer(gp))
proc.go#L2238: asmcgocall(_cgo_bindm, unsafe.Pointer(g))
proc.go#L2244: return uintptr(unsafe.Pointer(getg().m))
proc.go#L2293: return (*m)(unsafe.Pointer(old))
proc.go#L2303: extraM.Store(uintptr(unsafe.Pointer(mp)))
proc.go#L2441: ts.tls = (*uint64)(unsafe.Pointer(&mp.tls[0]))
proc.go#L2442: ts.fn = unsafe.Pointer(abi.FuncPCABI0(mstart))
proc.go#L2444: msanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
proc.go#L2447: asanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
proc.go#L2450: asmcgocall(_cgo_thread_start, unsafe.Pointer(&ts))
proc.go#L3715: func parkunlock_c(gp *g, lock unsafe.Pointer) bool {
proc.go#L4469: *(*uintptr)(unsafe.Pointer(newg.stack.lo)) = 0
proc.go#L4522: *(*uintptr)(unsafe.Pointer(sp)) = 0
proc.go#L4527: memclrNoHeapPointers(unsafe.Pointer(&newg.sched), unsafe.Sizeof(newg.sched))
proc.go#L4531: newg.sched.g = guintptr(unsafe.Pointer(newg))
proc.go#L4577: racereleasemergeg(newg, unsafe.Pointer(&labelSync))
proc.go#L4712: racemalloc(unsafe.Pointer(gp.stack.lo), gp.stack.hi-gp.stack.lo)
proc.go#L4715: msanmalloc(unsafe.Pointer(gp.stack.lo), gp.stack.hi-gp.stack.lo)
proc.go#L4718: asanunpoison(unsafe.Pointer(gp.stack.lo), gp.stack.hi-gp.stack.lo)
proc.go#L4993: var tagPtr *unsafe.Pointer
proc.go#L5141: mheap_.spanalloc.free(unsafe.Pointer(pp.mspancache.buf[i]))
proc.go#L5242: atomicstorep(unsafe.Pointer(&allp[i]), unsafe.Pointer(pp))
proc.go#L5312: atomic.Store((*uint32)(unsafe.Pointer(int32p)), uint32(nprocs))
proc.go#L6176: runnext := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&pp.runnext)))
proc.go#L6207: if !pp.runnext.cas(oldnext, guintptr(unsafe.Pointer(gp))) {
proc.go#L6736: firstFunc := add(unsafe.Pointer(t), 8)
proc.go#L6739: f := *(*func())(unsafe.Pointer(&p))
proc.go#L6748: f := *(*func())(unsafe.Pointer(&firstFunc))
profbuf.go#L97: tags []unsafe.Pointer
profbuf.go#L230: b.tags = make([]unsafe.Pointer, tags)
profbuf.go#L303: func (b *profBuf) write(tagPtr *unsafe.Pointer, now int64, hdr []uint64, stk []uintptr) {
profbuf.go#L351: *(*uintptr)(unsafe.Pointer(&b.tags[wt])) = uintptr(unsafe.Pointer(*tagPtr))
profbuf.go#L429: var overflowTag [1]unsafe.Pointer // always nil
profbuf.go#L431: func (b *profBuf) read(mode profBufReadMode) (data []uint64, tags []unsafe.Pointer, eof bool) {
profbuf.go#L557: raceacquire(unsafe.Pointer(&labelSync))
proflabel.go#L12: func runtime_setProfLabel(labels unsafe.Pointer) {
proflabel.go#L32: racereleasemerge(unsafe.Pointer(&labelSync))
proflabel.go#L38: func runtime_getProfLabel() unsafe.Pointer {
race0.go#L19: func raceReadObjectPC(t *_type, addr unsafe.Pointer, callerpc, pc uintptr) { throw("race") }
race0.go#L20: func raceWriteObjectPC(t *_type, addr unsafe.Pointer, callerpc, pc uintptr) { throw("race") }
race0.go#L25: func racemapshadow(addr unsafe.Pointer, size uintptr) { throw("race") }
race0.go#L26: func racewritepc(addr unsafe.Pointer, callerpc, pc uintptr) { throw("race") }
race0.go#L27: func racereadpc(addr unsafe.Pointer, callerpc, pc uintptr) { throw("race") }
race0.go#L28: func racereadrangepc(addr unsafe.Pointer, sz, callerpc, pc uintptr) { throw("race") }
race0.go#L29: func racewriterangepc(addr unsafe.Pointer, sz, callerpc, pc uintptr) { throw("race") }
race0.go#L30: func raceacquire(addr unsafe.Pointer) { throw("race") }
race0.go#L31: func raceacquireg(gp *g, addr unsafe.Pointer) { throw("race") }
race0.go#L32: func raceacquirectx(racectx uintptr, addr unsafe.Pointer) { throw("race") }
race0.go#L33: func racerelease(addr unsafe.Pointer) { throw("race") }
race0.go#L34: func racereleaseg(gp *g, addr unsafe.Pointer) { throw("race") }
race0.go#L35: func racereleaseacquire(addr unsafe.Pointer) { throw("race") }
race0.go#L36: func racereleaseacquireg(gp *g, addr unsafe.Pointer) { throw("race") }
race0.go#L37: func racereleasemerge(addr unsafe.Pointer) { throw("race") }
race0.go#L38: func racereleasemergeg(gp *g, addr unsafe.Pointer) { throw("race") }
race0.go#L40: func racemalloc(p unsafe.Pointer, sz uintptr) { throw("race") }
race0.go#L41: func racefree(p unsafe.Pointer, sz uintptr) { throw("race") }
runtime.go#L152: write(2, unsafe.Pointer(unsafe.StringData(s)), int32(len(s)))
runtime1.go#L63: return *(**byte)(add(unsafe.Pointer(argv), uintptr(i)*goarch.PtrSize))
runtime1.go#L154: k unsafe.Pointer
runtime1.go#L255: *(*uint64)(unsafe.Pointer(&j)) = ^uint64(0)
runtime1.go#L263: *(*uint64)(unsafe.Pointer(&j1)) = ^uint64(1)
runtime1.go#L271: *(*uint32)(unsafe.Pointer(&i)) = ^uint32(0)
runtime1.go#L279: *(*uint32)(unsafe.Pointer(&i1)) = ^uint32(1)
runtime1.go#L589: func reflect_typelinks() ([]unsafe.Pointer, [][]int32) {
runtime1.go#L591: sections := []unsafe.Pointer{unsafe.Pointer(modules[0].types)}
runtime1.go#L594: sections = append(sections, unsafe.Pointer(md.types))
runtime1.go#L603: func reflect_resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer {
runtime1.go#L604: return unsafe.Pointer(resolveNameOff(ptrInModule, nameOff(off)).Bytes)
runtime1.go#L610: func reflect_resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer {
runtime1.go#L611: return unsafe.Pointer(toRType((*_type)(rtype)).typeOff(typeOff(off)))
runtime1.go#L617: func reflect_resolveTextOff(rtype unsafe.Pointer, off int32) unsafe.Pointer {
runtime1.go#L625: func reflectlite_resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer {
runtime1.go#L626: return unsafe.Pointer(resolveNameOff(ptrInModule, nameOff(off)).Bytes)
runtime1.go#L632: func reflectlite_resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer {
runtime1.go#L633: return unsafe.Pointer(toRType((*_type)(rtype)).typeOff(typeOff(off)))
runtime1.go#L639: func reflect_addReflectOff(ptr unsafe.Pointer) int32 {
runtime1.go#L642: reflectOffs.m = make(map[int32]unsafe.Pointer)
runtime1.go#L643: reflectOffs.minv = make(map[unsafe.Pointer]int32)
runtime2.go#L206: data unsafe.Pointer
runtime2.go#L211: data unsafe.Pointer
runtime2.go#L215: return (*eface)(unsafe.Pointer(ep))
runtime2.go#L265: func (gp guintptr) ptr() *g { return (*g)(unsafe.Pointer(gp)) }
runtime2.go#L268: func (gp *guintptr) set(g *g) { *gp = guintptr(unsafe.Pointer(g)) }
runtime2.go#L272: return atomic.Casuintptr((*uintptr)(unsafe.Pointer(gp)), uintptr(old), uintptr(new))
runtime2.go#L277: return guintptr(unsafe.Pointer(gp))
runtime2.go#L286: (*guintptr)(unsafe.Pointer(gp)).set(new)
runtime2.go#L292: func (pp puintptr) ptr() *p { return (*p)(unsafe.Pointer(pp)) }
runtime2.go#L295: func (pp *puintptr) set(p *p) { *pp = puintptr(unsafe.Pointer(p)) }
runtime2.go#L309: func (mp muintptr) ptr() *m { return (*m)(unsafe.Pointer(mp)) }
runtime2.go#L312: func (mp *muintptr) set(m *m) { *mp = muintptr(unsafe.Pointer(m)) }
runtime2.go#L320: (*muintptr)(unsafe.Pointer(mp)).set(new)
runtime2.go#L339: ctxt unsafe.Pointer
runtime2.go#L364: elem unsafe.Pointer // data element (may point to stack)
runtime2.go#L444: param unsafe.Pointer
runtime2.go#L492: labels unsafe.Pointer // profiler labels
runtime2.go#L584: waitunlockf func(*g, unsafe.Pointer) bool
runtime2.go#L585: waitlock unsafe.Pointer
runtime2.go#L984: h := memhash(unsafe.Pointer(&r[n-w]), uintptr(nanotime()), uintptr(w))
runtime2.go#L1018: fd unsafe.Pointer // funcdata for the function associated with the frame
runtime2.go#L1036: argp unsafe.Pointer // pointer to arguments of deferred call run during panic; cannot move - known to liblink
runtime2.go#L1040: sp unsafe.Pointer // where to return to in runtime if this panic is bypassed
select.go#L21: elem unsafe.Pointer // data element
select.go#L62: func selparkcommit(gp *g, _ unsafe.Pointer) bool {
select.go#L128: cas1 := (*[1 << 16]scase)(unsafe.Pointer(cas0))
select.go#L129: order1 := (*[1 << 17]uint16)(unsafe.Pointer(order0))
select.go#L142: pc1 := (*[1 << 16]uintptr)(unsafe.Pointer(pc0))
select.go#L239: qp unsafe.Pointer
select.go#L519: return uintptr(unsafe.Pointer(c))
select.go#L526: typ unsafe.Pointer // channel type (not used here)
select.go#L528: val unsafe.Pointer // ptr to data (SendDir) or ptr to receive buffer (RecvDir)
sema.go#L57: return &t[(uintptr(unsafe.Pointer(addr))>>3)%semTabSize].root
sema.go#L248: s.elem = unsafe.Pointer(addr)
sema.go#L255: if t.elem == unsafe.Pointer(addr) {
sema.go#L294: if uintptr(unsafe.Pointer(addr)) < uintptr(t.elem) {
sema.go#L337: if s.elem == unsafe.Pointer(addr) {
sema.go#L340: if uintptr(unsafe.Pointer(addr)) < uintptr(s.elem) {
signal_amd64.go#L54: pc := (*[4]byte)(unsafe.Pointer(gp.sigpc))
signal_amd64.go#L72: if shouldPushSigpanic(gp, pc, *(*uintptr)(unsafe.Pointer(sp))) {
signal_amd64.go#L84: *(*uintptr)(unsafe.Pointer(sp)) = resumePC
signal_linux_amd64.go#L14: ctxt unsafe.Pointer
signal_linux_amd64.go#L20: return (*sigcontext)(unsafe.Pointer(&(*ucontext)(c.ctxt).uc_mcontext))
signal_linux_amd64.go#L55: *(*uintptr)(add(unsafe.Pointer(c.info), 2*goarch.PtrSize)) = uintptr(x)
signal_unix.go#L411: gp := *(**g)(unsafe.Pointer(s.base()))
signal_unix.go#L431: func sigtrampgo(sig uint32, info *siginfo, ctx unsafe.Pointer) {
signal_unix.go#L515: func sigprofNonGo(sig uint32, info *siginfo, ctx unsafe.Pointer) {
signal_unix.go#L556: sp := uintptr(unsafe.Pointer(&sig))
signal_unix.go#L563: stsp := uintptr(unsafe.Pointer(st.ss_sp))
signal_unix.go#L619: func sighandler(sig uint32, info *siginfo, ctxt unsafe.Pointer, gp *g) {
signal_unix.go#L647: if sig == _SIGTRAP && testSigtrap != nil && testSigtrap(info, (*sigctxt)(noescape(unsafe.Pointer(c))), gp) {
signal_unix.go#L815: b := (*[maxN]byte)(unsafe.Pointer(pc))
signal_unix.go#L1070: *(*uintptr)(unsafe.Pointer(uintptr(123))) = 2
signal_unix.go#L1082: func sigfwd(fn uintptr, sig uint32, info *siginfo, ctx unsafe.Pointer)
signal_unix.go#L1091: func sigfwdgo(sig uint32, info *siginfo, ctx unsafe.Pointer) bool {
signal_unix.go#L1330: stsp := uintptr(unsafe.Pointer(st.ss_sp))
slice.go#L16: array unsafe.Pointer
slice.go#L38: func makeslicecopy(et *_type, tolen int, fromlen int, from unsafe.Pointer) unsafe.Pointer {
slice.go#L55: var to unsafe.Pointer
slice.go#L88: func makeslice(et *_type, len, cap int) unsafe.Pointer {
slice.go#L106: func makeslice64(et *_type, len64, cap64 int64) unsafe.Pointer {
slice.go#L157: func growslice(oldPtr unsafe.Pointer, newLen, oldCap, num int, et *_type) slice {
slice.go#L177: return slice{unsafe.Pointer(&zerobase), newLen, newLen}
slice.go#L264: var p unsafe.Pointer
slice.go#L310: func slicecopy(toPtr unsafe.Pointer, toLen int, fromPtr unsafe.Pointer, fromLen int, width uintptr) int {
stack.go#L363: var v unsafe.Pointer
stack.go#L390: v = unsafe.Pointer(x)
stack.go#L415: v = unsafe.Pointer(s.base())
stack.go#L441: v := unsafe.Pointer(stk.lo)
stack.go#L566: func adjustpointer(adjinfo *adjustinfo, vpp unsafe.Pointer) {
stack.go#L598: func adjustpointers(scanp unsafe.Pointer, bv *bitvector, adjinfo *adjustinfo, f funcInfo) {
stack.go#L634: ppu := (*unsafe.Pointer)(unsafe.Pointer(pp))
stack.go#L635: if !atomic.Casp1(ppu, unsafe.Pointer(p), unsafe.Pointer(p+delta)) {
stack.go#L665: bp := *(*uintptr)(unsafe.Pointer(frame.varp))
stack.go#L676: adjustpointer(adjinfo, unsafe.Pointer(frame.varp))
stack.go#L684: adjustpointers(unsafe.Pointer(frame.varp-size), &locals, adjinfo, f)
stack.go#L692: adjustpointers(unsafe.Pointer(frame.argp), &args, adjinfo, funcInfo{})
stack.go#L718: gcdata = (*byte)(unsafe.Pointer(s.startAddr))
stack.go#L722: adjustpointer(adjinfo, unsafe.Pointer(p+i))
stack.go#L733: adjustpointer(adjinfo, unsafe.Pointer(&gp.sched.ctxt))
stack.go#L746: adjustpointer(adjinfo, unsafe.Pointer(&gp.sched.bp))
stack.go#L752: memmove(unsafe.Pointer(gp.sched.bp), unsafe.Pointer(oldfp), goarch.PtrSize)
stack.go#L753: adjustpointer(adjinfo, unsafe.Pointer(gp.sched.bp))
stack.go#L762: adjustpointer(adjinfo, unsafe.Pointer(&gp._defer))
stack.go#L764: adjustpointer(adjinfo, unsafe.Pointer(&d.fn))
stack.go#L765: adjustpointer(adjinfo, unsafe.Pointer(&d.sp))
stack.go#L766: adjustpointer(adjinfo, unsafe.Pointer(&d._panic))
stack.go#L767: adjustpointer(adjinfo, unsafe.Pointer(&d.link))
stack.go#L768: adjustpointer(adjinfo, unsafe.Pointer(&d.varp))
stack.go#L769: adjustpointer(adjinfo, unsafe.Pointer(&d.fd))
stack.go#L776: adjustpointer(adjinfo, unsafe.Pointer(&gp._panic))
stack.go#L783: adjustpointer(adjinfo, unsafe.Pointer(&s.elem))
stack.go#L789: *(*byte)(unsafe.Pointer(p)) = b
stack.go#L841: memmove(unsafe.Pointer(newBot), unsafe.Pointer(oldBot), sgsize)
stack.go#L914: memmove(unsafe.Pointer(new.hi-ncopy), unsafe.Pointer(old.hi-ncopy), ncopy)
stack.go#L1132: var fn unsafe.Pointer
stack.go#L1134: fn = unsafe.Pointer(fv.fn)
stack.go#L1136: fn = unsafe.Pointer(abi.FuncPCABIInternal(nilfunc))
stack.go#L1138: gostartcall(gobuf, fn, unsafe.Pointer(fv))
stack.go#L1280: ptr := uintptr(unsafe.Pointer(r))
stack.go#L1292: return (*byte)(unsafe.Pointer(res))
stkframe.go#L133: mv := *(**reflectMethodValue)(unsafe.Pointer(arg0))
stkframe.go#L137: retValid := *(*bool)(unsafe.Pointer(arg0 + 4*goarch.PtrSize))
stkframe.go#L272: ptr := uintptr(unsafe.Pointer(&methodValueCallFrameObjs[0]))
stkframe.go#L287: gcdataoff: uint32(uintptr(unsafe.Pointer(abiRegArgsType.GCData)) - mod.rodata),
string.go#L89: racereadrangepc(unsafe.Pointer(ptr),
string.go#L95: msanread(unsafe.Pointer(ptr), uintptr(n))
string.go#L98: asanread(unsafe.Pointer(ptr), uintptr(n))
string.go#L101: p := unsafe.Pointer(&staticuint64s[*ptr])
string.go#L108: var p unsafe.Pointer
string.go#L110: p = unsafe.Pointer(buf)
string.go#L114: memmove(p, unsafe.Pointer(ptr), uintptr(n))
string.go#L121: ptr := uintptr(unsafe.Pointer(unsafe.StringData(s)))
string.go#L152: racereadrangepc(unsafe.Pointer(ptr),
string.go#L158: msanread(unsafe.Pointer(ptr), uintptr(n))
string.go#L161: asanread(unsafe.Pointer(ptr), uintptr(n))
string.go#L204: racereadrangepc(unsafe.Pointer(&a[0]),
string.go#L210: msanread(unsafe.Pointer(&a[0]), uintptr(len(a))*unsafe.Sizeof(a[0]))
string.go#L213: asanread(unsafe.Pointer(&a[0]), uintptr(len(a))*unsafe.Sizeof(a[0]))
string.go#L233: str unsafe.Pointer
string.go#L244: return (*stringStruct)(unsafe.Pointer(sp))
string.go#L279: *(*slice)(unsafe.Pointer(&b)) = slice{p, size, int(cap)}
string.go#L294: *(*slice)(unsafe.Pointer(&b)) = slice{p, size, int(mem / 4)}
string.go#L309: memmove(bp, unsafe.Pointer(p), uintptr(n))
string.go#L311: *(*slice)(unsafe.Pointer(&b)) = slice{bp, n, n}
string.go#L324: memmove(unsafe.Pointer(&b[0]), unsafe.Pointer(p), uintptr(l))
string.go#L340: memmove(unsafe.Pointer(&b[0]), unsafe.Pointer(p), uintptr(l))
string.go#L517: p := (*[maxAlloc/2 - 1]byte)(unsafe.Pointer(s))
string.go#L532: ptr := unsafe.Pointer(s)
string.go#L539: t := *(*string)(unsafe.Pointer(&stringStruct{ptr, safeLen}))
string.go#L545: ptr = unsafe.Pointer(uintptr(ptr) + uintptr(safeLen))
string.go#L555: p := (*[maxAlloc/2/2 - 1]uint16)(unsafe.Pointer(s))
string.go#L565: ss := stringStruct{str: unsafe.Pointer(str), len: findnull(str)}
string.go#L566: s := *(*string)(unsafe.Pointer(&ss))
string.go#L572: str := (*[maxAlloc/2/2 - 1]uint16)(unsafe.Pointer(strw))
stubs.go#L17: func add(p unsafe.Pointer, x uintptr) unsafe.Pointer {
stubs.go#L18: return unsafe.Pointer(uintptr(p) + x)
stubs.go#L89: func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr)
stubs.go#L92: func reflect_memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr) {
stubs.go#L109: func memmove(to, from unsafe.Pointer, n uintptr)
stubs.go#L116: func reflect_memmove(to, from unsafe.Pointer, n uintptr) {
stubs.go#L142: t := (*[2]uint32)(unsafe.Pointer(&mp.fastrand))
stubs.go#L174: t := (*[2]uint32)(unsafe.Pointer(&mp.fastrand))
stubs.go#L211: func memequal(a, b unsafe.Pointer, size uintptr) bool
stubs.go#L220: func noescape(p unsafe.Pointer) unsafe.Pointer {
stubs.go#L222: return unsafe.Pointer(x ^ 0)
stubs.go#L230: x := uintptr(unsafe.Pointer(p))
stubs.go#L231: return (*T)(unsafe.Pointer(x ^ 0))
stubs.go#L295: func reflectcall(stackArgsType *_type, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L377: func asmcgocall(fn, arg unsafe.Pointer) int32
stubs.go#L393: func call16(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L394: func call32(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L395: func call64(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L396: func call128(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L397: func call256(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L398: func call512(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L399: func call1024(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L400: func call2048(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L401: func call4096(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L402: func call8192(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L403: func call16384(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L404: func call32768(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L405: func call65536(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L406: func call131072(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L407: func call262144(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L408: func call524288(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L409: func call1048576(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L410: func call2097152(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L411: func call4194304(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L412: func call8388608(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L413: func call16777216(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L414: func call33554432(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L415: func call67108864(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L416: func call134217728(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L417: func call268435456(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L418: func call536870912(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L419: func call1073741824(typ, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs)
stubs.go#L443: func memequal_varlen(a, b unsafe.Pointer) bool
stubs.go#L449: return int(uint8(*(*uint8)(unsafe.Pointer(&x))))
stubs2.go#L16: func read(fd int32, p unsafe.Pointer, n int32) int32
stubs2.go#L32: func write1(fd uintptr, p unsafe.Pointer, n int32) int32
stubs2.go#L38: func madvise(addr unsafe.Pointer, n uintptr, flags int32) int32
stubs_amd64.go#L42: func asmcgocall_no_g(fn, arg unsafe.Pointer)
stubs_linux.go#L19: func connect(fd int32, addr unsafe.Pointer, len int32) int32
symtab.go#L287: return (*_func)(unsafe.Pointer(f))
symtab.go#L298: ptr := uintptr(unsafe.Pointer(f))
symtab.go#L304: base := uintptr(unsafe.Pointer(&datap.pclntable[0]))
symtab.go#L427: p := (*[]*moduledata)(atomic.Loadp(unsafe.Pointer(&modulesSlice)))
symtab.go#L461: md.gcdatamask = progToPointerMask((*byte)(unsafe.Pointer(md.gcdata)), scanDataSize)
symtab.go#L463: md.gcbssmask = progToPointerMask((*byte)(unsafe.Pointer(md.gcbss)), scanBSSSize)
symtab.go#L485: atomicstorep(unsafe.Pointer(&modulesSlice), unsafe.Pointer(modules))
symtab.go#L541: f1 := funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[i].funcoff])), datap}
symtab.go#L542: f2 := funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[i+1].funcoff])), datap}
symtab.go#L549: println("\t", hex(datap.ftab[j].entryoff), funcname(funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[j].funcoff])), datap}))
symtab.go#L675: return (*Func)(unsafe.Pointer(fi))
symtab.go#L685: fi := (*funcinl)(unsafe.Pointer(fn))
symtab.go#L695: fi := (*funcinl)(unsafe.Pointer(fn))
symtab.go#L708: fi := (*funcinl)(unsafe.Pointer(fn))
symtab.go#L722: fi := (*funcinl)(unsafe.Pointer(fn))
symtab.go#L753: return (*Func)(unsafe.Pointer(f._func))
symtab.go#L788: ffb := (*findfuncbucket)(add(unsafe.Pointer(datap.findfunctab), b*unsafe.Sizeof(findfuncbucket{})))
symtab.go#L797: return funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[funcoff])), datap}
symtab.go#L1022: return *(*uint32)(add(unsafe.Pointer(&f.nfuncdata), unsafe.Sizeof(f.nfuncdata)+uintptr(table)*4))
symtab.go#L1052: func funcdata(f funcInfo, i uint8) unsafe.Pointer {
symtab.go#L1057: p := uintptr(unsafe.Pointer(&f.nfuncdata)) + unsafe.Sizeof(f.nfuncdata) + uintptr(f.npcdata)*4 + uintptr(i)*4
symtab.go#L1058: off := *(*uint32)(unsafe.Pointer(p))
symtab.go#L1067: return unsafe.Pointer(raw & mask)
sys_x86.go#L16: func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
sys_x86.go#L19: *(*uintptr)(unsafe.Pointer(sp)) = buf.pc
tagptr_64bit.go#L57: func taggedPointerPack(ptr unsafe.Pointer, tag uintptr) taggedPointer {
tagptr_64bit.go#L71: func (tp taggedPointer) pointer() unsafe.Pointer {
tagptr_64bit.go#L75: return unsafe.Pointer(uintptr(int64(tp) >> tagBits << 3))
tagptr_64bit.go#L78: return unsafe.Pointer(uintptr((tp >> aixTagBits << 3) | 0xa<<56))
tagptr_64bit.go#L81: return unsafe.Pointer(uintptr(tp >> riscv64TagBits << 3))
tagptr_64bit.go#L83: return unsafe.Pointer(uintptr(tp >> tagBits << 3))
time.go#L195: gopark(resetForSleep, unsafe.Pointer(t), waitReasonSleep, traceBlockSleep, 1)
time.go#L202: func resetForSleep(gp *g, ut unsafe.Pointer) bool {
time.go#L213: racerelease(unsafe.Pointer(t))
time.go#L233: racerelease(unsafe.Pointer(t))
time.go#L847: raceacquirectx(ppcur.timerRaceCtx, unsafe.Pointer(t))
time_nofake.go#L22: var overrideWrite func(fd uintptr, p unsafe.Pointer, n int32) int32
time_nofake.go#L27: func write(fd uintptr, p unsafe.Pointer, n int32) int32 {
trace.go#L253: func (tp traceBufPtr) ptr() *traceBuf { return (*traceBuf)(unsafe.Pointer(tp)) }
trace.go#L254: func (tp *traceBufPtr) set(b *traceBuf) { *tp = traceBufPtr(unsafe.Pointer(b)) }
trace.go#L256: return traceBufPtr(unsafe.Pointer(b))
trace.go#L327: atomicstorep(unsafe.Pointer(&trace.cpuLogWrite), unsafe.Pointer(profBuf))
trace.go#L432: atomicstorep(unsafe.Pointer(&trace.cpuLogWrite), nil)
trace.go#L488: raceacquire(unsafe.Pointer(&trace.shutdownSema))
trace.go#L511: sysFree(unsafe.Pointer(buf), unsafe.Sizeof(*buf.ptr()), &memstats.other_sys)
trace.go#L533: gopark(func(gp *g, _ unsafe.Pointer) bool {
trace.go#L658: racerelease(unsafe.Pointer(&trace.shutdownSema))
trace.go#L880: if log := (*profBuf)(atomic.Loadp(unsafe.Pointer(&trace.cpuLogWrite))); log != nil {
trace.go#L983: nstk += fpTracebackPCs(unsafe.Pointer(getfp()), pcBuf[1:])
trace.go#L991: nstk += 1 + fpTracebackPCs(unsafe.Pointer(curgp.sched.bp), pcBuf[2:])
trace.go#L1015: func fpTracebackPCs(fp unsafe.Pointer, pcBuf []uintptr) (i int) {
trace.go#L1018: pcBuf[i] = *(*uintptr)(unsafe.Pointer(uintptr(fp) + goarch.PtrSize))
trace.go#L1020: fp = unsafe.Pointer(*(*uintptr)(fp))
trace.go#L1101: raceacquire(unsafe.Pointer(&trace.stringsLock))
trace.go#L1106: racerelease(unsafe.Pointer(&trace.stringsLock))
trace.go#L1118: racerelease(unsafe.Pointer(&trace.stringsLock))
trace.go#L1206: func (tp traceStackPtr) ptr() *traceStack { return (*traceStack)(unsafe.Pointer(tp)) }
trace.go#L1210: return (*[traceStackSize]uintptr)(unsafe.Pointer(&ts.stk))[:ts.n]
trace.go#L1219: hash := memhash(unsafe.Pointer(&pcs[0]), 0, uintptr(len(pcs))*unsafe.Sizeof(pcs[0]))
trace.go#L1244: atomicstorep(unsafe.Pointer(&tab.tab[part]), unsafe.Pointer(stk))
trace.go#L1445: func (p traceAllocBlockPtr) ptr() *traceAllocBlock { return (*traceAllocBlock)(unsafe.Pointer(p)) }
trace.go#L1446: func (p *traceAllocBlockPtr) set(x *traceAllocBlock) { *p = traceAllocBlockPtr(unsafe.Pointer(x)) }
trace.go#L1449: func (a *traceAlloc) alloc(n uintptr) unsafe.Pointer {
trace.go#L1465: return unsafe.Pointer(p)
trace.go#L1473: sysFree(unsafe.Pointer(block), unsafe.Sizeof(traceAllocBlock{}), &memstats.other_sys)
traceback.go#L180: frame.pc = *(*uintptr)(unsafe.Pointer(frame.sp))
traceback.go#L183: frame.pc = uintptr(*(*uintptr)(unsafe.Pointer(frame.sp)))
traceback.go#L378: frame.lr = *(*uintptr)(unsafe.Pointer(lrPtr))
traceback.go#L383: frame.lr = *(*uintptr)(unsafe.Pointer(lrPtr))
traceback.go#L507: x := *(*uintptr)(unsafe.Pointer(frame.sp))
traceback.go#L658: func printArgs(f funcInfo, argp unsafe.Pointer, pc uintptr) {
traceback.go#L1015: argp := unsafe.Pointer(u.frame.argp)
traceback.go#L1497: func SetCgoTraceback(version int, traceback, context, symbolizer unsafe.Pointer) {
traceback.go#L1519: var cgoTraceback unsafe.Pointer
traceback.go#L1520: var cgoContext unsafe.Pointer
traceback.go#L1521: var cgoSymbolizer unsafe.Pointer
traceback.go#L1612: msanwrite(unsafe.Pointer(arg), unsafe.Sizeof(cgoSymbolizerArg{}))
traceback.go#L1615: asanwrite(unsafe.Pointer(arg), unsafe.Sizeof(cgoSymbolizerArg{}))
traceback.go#L1617: call(cgoSymbolizer, noescape(unsafe.Pointer(arg)))
traceback.go#L1633: buf: (*uintptr)(noescape(unsafe.Pointer(&buf[0]))),
traceback.go#L1637: msanwrite(unsafe.Pointer(&arg), unsafe.Sizeof(arg))
traceback.go#L1640: asanwrite(unsafe.Pointer(&arg), unsafe.Sizeof(arg))
traceback.go#L1642: call(cgoTraceback, noescape(unsafe.Pointer(&arg)))
type.go#L66: st := (*structtype)(unsafe.Pointer(t.Type))
type.go#L69: it := (*interfacetype)(unsafe.Pointer(t.Type))
type.go#L91: m map[int32]unsafe.Pointer
type.go#L92: minv map[unsafe.Pointer]int32
type.go#L98: raceacquire(unsafe.Pointer(&reflectOffs.lock))
type.go#L104: racerelease(unsafe.Pointer(&reflectOffs.lock))
type.go#L109: func resolveNameOff(ptrInModule unsafe.Pointer, off nameOff) name {
type.go#L121: return name{Bytes: (*byte)(unsafe.Pointer(res))}
type.go#L140: return resolveNameOff(unsafe.Pointer(t.Type), off)
type.go#L143: func resolveTypeOff(ptrInModule unsafe.Pointer, off typeOff) *_type {
type.go#L178: return (*_type)(unsafe.Pointer(res))
type.go#L182: return resolveTypeOff(unsafe.Pointer(t.Type), off)
type.go#L185: func (t rtype) textOff(off textOff) unsafe.Pointer {
type.go#L189: return unsafe.Pointer(abi.FuncPCABIInternal(unreachableMethod))
type.go#L191: base := uintptr(unsafe.Pointer(t.Type))
type.go#L213: return unsafe.Pointer(res)
type.go#L247: copy((*[4]byte)(unsafe.Pointer(&nameOff))[:], (*[4]byte)(unsafe.Pointer(n.Data(off)))[:])
type.go#L248: pkgPathName := resolveNameOff(unsafe.Pointer(n.Bytes), nameOff)
type.go#L268: t = (*_type)(unsafe.Pointer(prev.types + uintptr(tl)))
type.go#L290: t := (*_type)(unsafe.Pointer(md.types + uintptr(tl)))
type.go#L368: at := (*arraytype)(unsafe.Pointer(t))
type.go#L369: av := (*arraytype)(unsafe.Pointer(v))
type.go#L372: ct := (*chantype)(unsafe.Pointer(t))
type.go#L373: cv := (*chantype)(unsafe.Pointer(v))
type.go#L376: ft := (*functype)(unsafe.Pointer(t))
type.go#L377: fv := (*functype)(unsafe.Pointer(v))
type.go#L395: it := (*interfacetype)(unsafe.Pointer(t))
type.go#L396: iv := (*interfacetype)(unsafe.Pointer(v))
type.go#L408: tname := resolveNameOff(unsafe.Pointer(tm), tm.Name)
type.go#L409: vname := resolveNameOff(unsafe.Pointer(vm), vm.Name)
type.go#L416: tityp := resolveTypeOff(unsafe.Pointer(tm), tm.Typ)
type.go#L417: vityp := resolveTypeOff(unsafe.Pointer(vm), vm.Typ)
type.go#L424: mt := (*maptype)(unsafe.Pointer(t))
type.go#L425: mv := (*maptype)(unsafe.Pointer(v))
type.go#L428: pt := (*ptrtype)(unsafe.Pointer(t))
type.go#L429: pv := (*ptrtype)(unsafe.Pointer(v))
type.go#L432: st := (*slicetype)(unsafe.Pointer(t))
type.go#L433: sv := (*slicetype)(unsafe.Pointer(v))
type.go#L436: st := (*structtype)(unsafe.Pointer(t))
type.go#L437: sv := (*structtype)(unsafe.Pointer(v))
unsafe.go#L12: func unsafestring(ptr unsafe.Pointer, len int) {
unsafe.go#L26: func unsafestring64(ptr unsafe.Pointer, len64 int64) {
unsafe.go#L34: func unsafestringcheckptr(ptr unsafe.Pointer, len64 int64) {
unsafe.go#L53: func unsafeslice(et *_type, ptr unsafe.Pointer, len int) {
unsafe.go#L74: func unsafeslice64(et *_type, ptr unsafe.Pointer, len64 int64) {
unsafe.go#L82: func unsafeslicecheckptr(et *_type, ptr unsafe.Pointer, len64 int64) {
vdso_linux.go#L104: info.loadAddr = uintptr(unsafe.Pointer(hdr))
vdso_linux.go#L106: pt := unsafe.Pointer(info.loadAddr + uintptr(hdr.e_phoff))
vdso_linux.go#L122: dyn = (*[vdsoDynSize]elfDyn)(unsafe.Pointer(info.loadAddr + uintptr(pt.p_offset)))
vdso_linux.go#L142: info.symstrings = (*[vdsoSymStringsSize]byte)(unsafe.Pointer(p))
vdso_linux.go#L144: info.symtab = (*[vdsoSymTabSize]elfSym)(unsafe.Pointer(p))
vdso_linux.go#L146: hash = (*[vdsoHashSize]uint32)(unsafe.Pointer(p))
vdso_linux.go#L148: gnuhash = (*[vdsoHashSize]uint32)(unsafe.Pointer(p))
vdso_linux.go#L150: info.versym = (*[vdsoVerSymSize]uint16)(unsafe.Pointer(p))
vdso_linux.go#L152: info.verdef = (*elfVerdef)(unsafe.Pointer(p))
vdso_linux.go#L192: aux := (*elfVerdaux)(add(unsafe.Pointer(def), uintptr(def.vd_aux)))
vdso_linux.go#L201: def = (*elfVerdef)(add(unsafe.Pointer(def), uintptr(def.vd_next)))
vdso_linux.go#L278: info1 := (*vdsoInfo)(noescape(unsafe.Pointer(&info)))
vdso_linux.go#L279: vdsoInitFromSysinfoEhdr(info1, (*elfEhdr)(unsafe.Pointer(val)))
write_err.go#L12: write(2, unsafe.Pointer(&b[0]), int32(len(b)))
runtime/cgo
callbacks.go#L140: var _cgo_yield unsafe.Pointer
linux.go#L26: var cgo_libc_setegid = unsafe.Pointer(&_cgo_libc_setegid)
linux.go#L32: var cgo_libc_seteuid = unsafe.Pointer(&_cgo_libc_seteuid)
linux.go#L38: var cgo_libc_setregid = unsafe.Pointer(&_cgo_libc_setregid)
linux.go#L44: var cgo_libc_setresgid = unsafe.Pointer(&_cgo_libc_setresgid)
linux.go#L50: var cgo_libc_setresuid = unsafe.Pointer(&_cgo_libc_setresuid)
linux.go#L56: var cgo_libc_setreuid = unsafe.Pointer(&_cgo_libc_setreuid)
linux.go#L62: var cgo_libc_setgroups = unsafe.Pointer(&_cgo_libc_setgroups)
linux.go#L68: var cgo_libc_setgid = unsafe.Pointer(&_cgo_libc_setgid)
linux.go#L74: var cgo_libc_setuid = unsafe.Pointer(&_cgo_libc_setuid)
3cba874ddeb388d384ac56aac3965e4e68e118497d449e645536824ebda8ca9d-d#L10: func _Cgo_ptr(ptr unsafe.Pointer) unsafe.Pointer { return ptr }
3cba874ddeb388d384ac56aac3965e4e68e118497d449e645536824ebda8ca9d-d#L19: func _cgo_runtime_cgocall(unsafe.Pointer, uintptr) int32
runtime/internal/atomic
atomic_amd64.go#L23: func Loadp(ptr unsafe.Pointer) unsafe.Pointer {
atomic_amd64.go#L24: return *(*unsafe.Pointer)(ptr)
atomic_amd64.go#L117: func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
stubs.go#L15: func Casp1(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool
types.go#L438: return *(*float64)(unsafe.Pointer(&r))
types.go#L445: f.u.Store(*(*uint64)(unsafe.Pointer(&value)))
types.go#L459: value unsafe.Pointer
types.go#L465: func (u *UnsafePointer) Load() unsafe.Pointer {
types.go#L466: return Loadp(unsafe.Pointer(&u.value))
types.go#L478: func (u *UnsafePointer) StoreNoWB(value unsafe.Pointer) {
types.go#L479: StorepNoWB(unsafe.Pointer(&u.value), value)
types.go#L483: func (u *UnsafePointer) Store(value unsafe.Pointer) {
types.go#L490: func storePointer(ptr *unsafe.Pointer, new unsafe.Pointer)
types.go#L504: func (u *UnsafePointer) CompareAndSwapNoWB(old, new unsafe.Pointer) bool {
types.go#L511: func (u *UnsafePointer) CompareAndSwap(old, new unsafe.Pointer) bool {
types.go#L515: func casPointer(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool
types.go#L539: p.u.StoreNoWB(unsafe.Pointer(value))
types.go#L546: p.u.Store(unsafe.Pointer(value))
types.go#L562: return p.u.CompareAndSwapNoWB(unsafe.Pointer(old), unsafe.Pointer(new))
types.go#L570: return p.u.CompareAndSwap(unsafe.Pointer(old), unsafe.Pointer(new))
runtime/internal/syscall
syscall_linux.go#L49: var ev unsafe.Pointer
syscall_linux.go#L51: ev = unsafe.Pointer(&events[0])
syscall_linux.go#L53: ev = unsafe.Pointer(&_zero)
syscall_linux.go#L60: _, _, e := Syscall6(SYS_EPOLL_CTL, uintptr(epfd), uintptr(op), uintptr(fd), uintptr(unsafe.Pointer(event)), 0, 0)
strings
builder.go#L29: func noescape(p unsafe.Pointer) unsafe.Pointer {
builder.go#L31: return unsafe.Pointer(x ^ 0)
builder.go#L41: b.addr = (*Builder)(noescape(unsafe.Pointer(b)))
sync
cond.go#L99: if uintptr(*c) != uintptr(unsafe.Pointer(c)) &&
cond.go#L100: !atomic.CompareAndSwapUintptr((*uintptr)(c), 0, uintptr(unsafe.Pointer(c))) &&
cond.go#L101: uintptr(*c) != uintptr(unsafe.Pointer(c)) {
mutex.go#L85: race.Acquire(unsafe.Pointer(m))
mutex.go#L112: race.Acquire(unsafe.Pointer(m))
mutex.go#L202: race.Acquire(unsafe.Pointer(m))
mutex.go#L215: race.Release(unsafe.Pointer(m))
pool.go#L52: local unsafe.Pointer // local fixed-size per-P pool, actual type is [P]poolLocal
pool.go#L55: victim unsafe.Pointer // local from previous cycle
pool.go#L88: func poolRaceAddr(x any) unsafe.Pointer {
pool.go#L89: ptr := uintptr((*[2]unsafe.Pointer)(unsafe.Pointer(&x))[1])
pool.go#L91: return unsafe.Pointer(&poolRaceHash[h%uint32(len(poolRaceHash))])
pool.go#L231: atomic.StorePointer(&p.local, unsafe.Pointer(&local[0])) // store-release
pool.go#L279: func indexLocal(l unsafe.Pointer, i int) *poolLocal {
pool.go#L280: lp := unsafe.Pointer(uintptr(l) + uintptr(i)*unsafe.Sizeof(poolLocal{}))
poolqueue.go#L48: typ, val unsafe.Pointer
poolqueue.go#L101: *(*any)(unsafe.Pointer(slot)) = val
poolqueue.go#L134: val := *(*any)(unsafe.Pointer(slot))
poolqueue.go#L169: val := *(*any)(unsafe.Pointer(slot))
poolqueue.go#L221: atomic.StorePointer((*unsafe.Pointer)(unsafe.Pointer(pp)), unsafe.Pointer(v))
poolqueue.go#L225: return (*poolChainElt)(atomic.LoadPointer((*unsafe.Pointer)(unsafe.Pointer(pp))))
poolqueue.go#L300: if atomic.CompareAndSwapPointer((*unsafe.Pointer)(unsafe.Pointer(&c.tail)), unsafe.Pointer(d), unsafe.Pointer(d2)) {
runtime2.go#L17: head unsafe.Pointer
runtime2.go#L18: tail unsafe.Pointer
rwmutex.go#L75: race.Acquire(unsafe.Pointer(&rw.readerSem))
rwmutex.go#L100: race.Acquire(unsafe.Pointer(&rw.readerSem))
rwmutex.go#L114: race.ReleaseMerge(unsafe.Pointer(&rw.writerSem))
rwmutex.go#L156: race.Acquire(unsafe.Pointer(&rw.readerSem))
rwmutex.go#L157: race.Acquire(unsafe.Pointer(&rw.writerSem))
rwmutex.go#L186: race.Acquire(unsafe.Pointer(&rw.readerSem))
rwmutex.go#L187: race.Acquire(unsafe.Pointer(&rw.writerSem))
rwmutex.go#L201: race.Release(unsafe.Pointer(&rw.readerSem))
waitgroup.go#L47: race.ReleaseMerge(unsafe.Pointer(wg))
waitgroup.go#L59: race.Read(unsafe.Pointer(&wg.sema))
waitgroup.go#L103: race.Acquire(unsafe.Pointer(wg))
waitgroup.go#L114: race.Write(unsafe.Pointer(&wg.sema))
waitgroup.go#L122: race.Acquire(unsafe.Pointer(wg))
sync/atomic
doc.go#L88: func SwapPointer(addr *unsafe.Pointer, new unsafe.Pointer) (old unsafe.Pointer)
doc.go#L114: func CompareAndSwapPointer(addr *unsafe.Pointer, old, new unsafe.Pointer) (swapped bool)
doc.go#L166: func LoadPointer(addr *unsafe.Pointer) (val unsafe.Pointer)
doc.go#L192: func StorePointer(addr *unsafe.Pointer, val unsafe.Pointer)
type.go#L50: v unsafe.Pointer
type.go#L57: func (x *Pointer[T]) Store(val *T) { StorePointer(&x.v, unsafe.Pointer(val)) }
type.go#L60: func (x *Pointer[T]) Swap(new *T) (old *T) { return (*T)(SwapPointer(&x.v, unsafe.Pointer(new))) }
type.go#L64: return CompareAndSwapPointer(&x.v, unsafe.Pointer(old), unsafe.Pointer(new))
value.go#L22: typ unsafe.Pointer
value.go#L23: data unsafe.Pointer
value.go#L29: vp := (*efaceWords)(unsafe.Pointer(v))
value.go#L31: if typ == nil || typ == unsafe.Pointer(&firstStoreInProgress) {
value.go#L36: vlp := (*efaceWords)(unsafe.Pointer(&val))
value.go#L51: vp := (*efaceWords)(unsafe.Pointer(v))
value.go#L52: vlp := (*efaceWords)(unsafe.Pointer(&val))
value.go#L60: if !CompareAndSwapPointer(&vp.typ, nil, unsafe.Pointer(&firstStoreInProgress)) {
value.go#L70: if typ == unsafe.Pointer(&firstStoreInProgress) {
value.go#L94: vp := (*efaceWords)(unsafe.Pointer(v))
value.go#L95: np := (*efaceWords)(unsafe.Pointer(&new))
value.go#L104: if !CompareAndSwapPointer(&vp.typ, nil, unsafe.Pointer(&firstStoreInProgress)) {
value.go#L114: if typ == unsafe.Pointer(&firstStoreInProgress) {
value.go#L124: op := (*efaceWords)(unsafe.Pointer(&old))
value.go#L139: vp := (*efaceWords)(unsafe.Pointer(v))
value.go#L140: np := (*efaceWords)(unsafe.Pointer(&new))
value.go#L141: op := (*efaceWords)(unsafe.Pointer(&old))
value.go#L156: if !CompareAndSwapPointer(&vp.typ, nil, unsafe.Pointer(&firstStoreInProgress)) {
value.go#L166: if typ == unsafe.Pointer(&firstStoreInProgress) {
value.go#L183: (*efaceWords)(unsafe.Pointer(&i)).typ = typ
value.go#L184: (*efaceWords)(unsafe.Pointer(&i)).data = data
syscall
asan0.go#L15: func asanRead(addr unsafe.Pointer, len int) {
asan0.go#L18: func asanWrite(addr unsafe.Pointer, len int) {
exec_linux.go#L151: RawSyscall(SYS_WRITE, uintptr(mapPipe[1]), uintptr(unsafe.Pointer(&err2)), unsafe.Sizeof(err2))
exec_linux.go#L311: pid, err1 = rawVforkSyscall(_SYS_clone3, uintptr(unsafe.Pointer(clone3)), unsafe.Sizeof(*clone3))
exec_linux.go#L346: pid, _, err1 = RawSyscall(SYS_READ, uintptr(mapPipe[0]), uintptr(unsafe.Pointer(&err2)), unsafe.Sizeof(err2))
exec_linux.go#L386: _, _, err1 = RawSyscall(SYS_IOCTL, uintptr(sys.Ctty), uintptr(TIOCSPGRP), uintptr(unsafe.Pointer(&pgrp)))
exec_linux.go#L405: if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&psetgroups[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
exec_linux.go#L408: pid, _, err1 = RawSyscall(SYS_WRITE, uintptr(fd1), uintptr(unsafe.Pointer(&setgroups[0])), uintptr(len(setgroups)))
exec_linux.go#L416: if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&pgid[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
exec_linux.go#L419: pid, _, err1 = RawSyscall(SYS_WRITE, uintptr(fd1), uintptr(unsafe.Pointer(&gidmap[0])), uintptr(len(gidmap)))
exec_linux.go#L430: if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&puid[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
exec_linux.go#L433: pid, _, err1 = RawSyscall(SYS_WRITE, uintptr(fd1), uintptr(unsafe.Pointer(&uidmap[0])), uintptr(len(uidmap)))
exec_linux.go#L450: _, _, err1 = RawSyscall6(SYS_MOUNT, uintptr(unsafe.Pointer(&none[0])), uintptr(unsafe.Pointer(&slash[0])), 0, MS_REC|MS_PRIVATE, 0, 0)
exec_linux.go#L459: _, _, err1 = RawSyscall(SYS_CHROOT, uintptr(unsafe.Pointer(chroot)), 0, 0)
exec_linux.go#L470: groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
exec_linux.go#L493: if _, _, err1 = RawSyscall(SYS_CAPGET, uintptr(unsafe.Pointer(&caps.hdr)), uintptr(unsafe.Pointer(&caps.data[0])), 0); err1 != 0 {
exec_linux.go#L504: if _, _, err1 = RawSyscall(SYS_CAPSET, uintptr(unsafe.Pointer(&caps.hdr)), uintptr(unsafe.Pointer(&caps.data[0])), 0); err1 != 0 {
exec_linux.go#L518: _, _, err1 = RawSyscall(SYS_CHDIR, uintptr(unsafe.Pointer(dir)), 0, 0)
exec_linux.go#L632: uintptr(unsafe.Pointer(argv0)),
exec_linux.go#L633: uintptr(unsafe.Pointer(&argv[0])),
exec_linux.go#L634: uintptr(unsafe.Pointer(&envv[0])))
exec_linux.go#L638: RawSyscall(SYS_WRITE, uintptr(pipe), uintptr(unsafe.Pointer(&err1)), unsafe.Sizeof(err1))
exec_unix.go#L217: n, err = readlen(p[0], (*byte)(unsafe.Pointer(&err1)), int(unsafe.Sizeof(err1)))
exec_unix.go#L290: uintptr(unsafe.Pointer(argv0p)),
exec_unix.go#L291: uintptr(unsafe.Pointer(&argvp[0])),
exec_unix.go#L292: uintptr(unsafe.Pointer(&envvp[0])))
exec_unix.go#L301: uintptr(unsafe.Pointer(argv0p)),
exec_unix.go#L302: uintptr(unsafe.Pointer(&argvp[0])),
exec_unix.go#L303: uintptr(unsafe.Pointer(&envvp[0])))
flock.go#L17: _, _, errno := Syscall(fcntl64Syscall, fd, uintptr(cmd), uintptr(unsafe.Pointer(lk)))
lsf_linux.go#L32: p := (*[2]byte)(unsafe.Pointer(&lsall.Protocol))
lsf_linux.go#L58: _, _, ep := Syscall(SYS_IOCTL, uintptr(s), SIOCGIFFLAGS, uintptr(unsafe.Pointer(&ifl)))
lsf_linux.go#L67: _, _, ep = Syscall(SYS_IOCTL, uintptr(s), SIOCSIFFLAGS, uintptr(unsafe.Pointer(&ifl)))
lsf_linux.go#L78: p.Filter = (*SockFilter)(unsafe.Pointer(&i[0]))
lsf_linux.go#L79: return setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, unsafe.Pointer(&p), unsafe.Sizeof(p))
lsf_linux.go#L85: return setsockopt(fd, SOL_SOCKET, SO_DETACH_FILTER, unsafe.Pointer(&dummy), unsafe.Sizeof(dummy))
msan0.go#L15: func msanRead(addr unsafe.Pointer, len int) {
msan0.go#L18: func msanWrite(addr unsafe.Pointer, len int) {
netlink_linux.go#L34: *(*uint32)(unsafe.Pointer(&b[0:4][0])) = rr.Header.Len
netlink_linux.go#L35: *(*uint16)(unsafe.Pointer(&b[4:6][0])) = rr.Header.Type
netlink_linux.go#L36: *(*uint16)(unsafe.Pointer(&b[6:8][0])) = rr.Header.Flags
netlink_linux.go#L37: *(*uint32)(unsafe.Pointer(&b[8:12][0])) = rr.Header.Seq
netlink_linux.go#L38: *(*uint32)(unsafe.Pointer(&b[12:16][0])) = rr.Header.Pid
netlink_linux.go#L140: h := (*NlMsghdr)(unsafe.Pointer(&b[0]))
netlink_linux.go#L183: a := (*RtAttr)(unsafe.Pointer(&b[0]))
sockcmsg_linux.go#L16: h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
sockcmsg_linux.go#L37: ucred := *(*Ucred)(unsafe.Pointer(&m.Data[0]))
sockcmsg_unix.go#L27: func (h *Cmsghdr) data(offset uintptr) unsafe.Pointer {
sockcmsg_unix.go#L28: return unsafe.Pointer(uintptr(unsafe.Pointer(h)) + uintptr(cmsgAlignOf(SizeofCmsghdr)) + offset)
sockcmsg_unix.go#L55: h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
sockcmsg_unix.go#L67: h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
sockcmsg_unix.go#L88: fds[j] = int(*(*int32)(unsafe.Pointer(&m.Data[i])))
syscall_linux.go#L146: _, _, err := RawSyscall(SYS_CAPGET, uintptr(unsafe.Pointer(&c.hdr)), uintptr(unsafe.Pointer(&c.data[0])), 0)
syscall_linux.go#L334: return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
syscall_linux.go#L343: return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
syscall_linux.go#L350: return futimesat(dirfd, path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
syscall_linux.go#L409: var cgo_libc_setgroups unsafe.Pointer // non-nil if cgo linked.
syscall_linux.go#L431: if _, _, e1 := AllThreadsSyscall(_SYS_setgroups, n, uintptr(unsafe.Pointer(&a[0])), 0); e1 != 0 {
syscall_linux.go#L436: if ret := cgocaller(cgo_libc_setgroups, n, uintptr(unsafe.Pointer(&a[0]))); ret != 0 {
syscall_linux.go#L514: func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {
syscall_linux.go#L519: p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
syscall_linux.go#L523: return unsafe.Pointer(&sa.raw), SizeofSockaddrInet4, nil
syscall_linux.go#L526: func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) {
syscall_linux.go#L531: p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
syscall_linux.go#L536: return unsafe.Pointer(&sa.raw), SizeofSockaddrInet6, nil
syscall_linux.go#L539: func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
syscall_linux.go#L563: return unsafe.Pointer(&sa.raw), sl, nil
syscall_linux.go#L576: func (sa *SockaddrLinklayer) sockaddr() (unsafe.Pointer, _Socklen, error) {
syscall_linux.go#L587: return unsafe.Pointer(&sa.raw), SizeofSockaddrLinklayer, nil
syscall_linux.go#L598: func (sa *SockaddrNetlink) sockaddr() (unsafe.Pointer, _Socklen, error) {
syscall_linux.go#L603: return unsafe.Pointer(&sa.raw), SizeofSockaddrNetlink, nil
syscall_linux.go#L609: pp := (*RawSockaddrNetlink)(unsafe.Pointer(rsa))
syscall_linux.go#L618: pp := (*RawSockaddrLinklayer)(unsafe.Pointer(rsa))
syscall_linux.go#L629: pp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))
syscall_linux.go#L649: sa.Name = string(unsafe.Slice((*byte)(unsafe.Pointer(&pp.Path[0])), n))
syscall_linux.go#L653: pp := (*RawSockaddrInet4)(unsafe.Pointer(rsa))
syscall_linux.go#L655: p := (*[2]byte)(unsafe.Pointer(&pp.Port))
syscall_linux.go#L661: pp := (*RawSockaddrInet6)(unsafe.Pointer(rsa))
syscall_linux.go#L663: p := (*[2]byte)(unsafe.Pointer(&pp.Port))
syscall_linux.go#L701: err = getsockopt(fd, level, opt, unsafe.Pointer(&value[0]), &vallen)
syscall_linux.go#L708: err := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
syscall_linux.go#L715: err := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
syscall_linux.go#L722: err := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
syscall_linux.go#L729: err := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
syscall_linux.go#L736: err := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
syscall_linux.go#L743: err := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
syscall_linux.go#L748: return setsockopt(fd, level, opt, unsafe.Pointer(mreq), unsafe.Sizeof(*mreq))
syscall_linux.go#L753: msg.Name = (*byte)(unsafe.Pointer(rsa))
syscall_linux.go#L787: func sendmsgN(fd int, p, oob []byte, ptr unsafe.Pointer, salen _Socklen, flags int) (n int, err error) {
syscall_linux.go#L848: err = ptracePtr(req, pid, addr-addr%sizeofPtr, unsafe.Pointer(&buf[0]))
syscall_linux.go#L860: err = ptracePtr(req, pid, addr+uintptr(n), unsafe.Pointer(&buf[0]))
syscall_linux.go#L888: err = ptracePtr(peekReq, pid, addr-addr%sizeofPtr, unsafe.Pointer(&buf[0]))
syscall_linux.go#L893: word := *((*uintptr)(unsafe.Pointer(&buf[0])))
syscall_linux.go#L903: word := *((*uintptr)(unsafe.Pointer(&data[0])))
syscall_linux.go#L915: err = ptracePtr(peekReq, pid, addr+uintptr(n), unsafe.Pointer(&buf[0]))
syscall_linux.go#L920: word := *((*uintptr)(unsafe.Pointer(&buf[0])))
syscall_linux.go#L945: iov.Base = (*byte)(unsafe.Pointer(regsout))
syscall_linux.go#L947: return ptracePtr(PTRACE_GETREGSET, pid, uintptr(_NT_PRSTATUS), unsafe.Pointer(&iov))
syscall_linux.go#L952: iov.Base = (*byte)(unsafe.Pointer(regs))
syscall_linux.go#L954: return ptracePtr(PTRACE_SETREGSET, pid, uintptr(_NT_PRSTATUS), unsafe.Pointer(&iov))
syscall_linux.go#L963: err = ptracePtr(PTRACE_GETEVENTMSG, pid, 0, unsafe.Pointer(&data))
syscall_linux.go#L1127: func cgocaller(unsafe.Pointer, ...uintptr) uintptr
syscall_linux.go#L1129: var cgo_libc_setegid unsafe.Pointer // non-nil if cgo linked.
syscall_linux.go#L1144: var cgo_libc_seteuid unsafe.Pointer // non-nil if cgo linked.
syscall_linux.go#L1157: var cgo_libc_setgid unsafe.Pointer // non-nil if cgo linked.
syscall_linux.go#L1170: var cgo_libc_setregid unsafe.Pointer // non-nil if cgo linked.
syscall_linux.go#L1183: var cgo_libc_setresgid unsafe.Pointer // non-nil if cgo linked.
syscall_linux.go#L1196: var cgo_libc_setresuid unsafe.Pointer // non-nil if cgo linked.
syscall_linux.go#L1209: var cgo_libc_setreuid unsafe.Pointer // non-nil if cgo linked.
syscall_linux.go#L1222: var cgo_libc_setuid unsafe.Pointer // non-nil if cgo linked.
syscall_linux_amd64.go#L107: _, _, errno := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)
syscall_unix.go#L60: b := unsafe.Slice((*byte)(unsafe.Pointer(addr)), length)
syscall_unix.go#L85: if errno := m.munmap(uintptr(unsafe.Pointer(&b[0])), uintptr(len(b))); errno != nil {
syscall_unix.go#L184: race.WriteRange(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L187: race.Acquire(unsafe.Pointer(&ioSync))
syscall_unix.go#L191: msanWrite(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L194: asanWrite(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L201: race.ReleaseMerge(unsafe.Pointer(&ioSync))
syscall_unix.go#L212: race.ReadRange(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L215: msanRead(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L218: asanRead(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L227: race.WriteRange(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L230: race.Acquire(unsafe.Pointer(&ioSync))
syscall_unix.go#L234: msanWrite(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L237: asanWrite(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L244: race.ReleaseMerge(unsafe.Pointer(&ioSync))
syscall_unix.go#L248: race.ReadRange(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L251: msanRead(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L254: asanRead(unsafe.Pointer(&p[0]), n)
syscall_unix.go#L264: sockaddr() (ptr unsafe.Pointer, len _Socklen, err error) // lowercase; only we can define Sockaddrs
syscall_unix.go#L313: err = getsockopt(fd, level, opt, unsafe.Pointer(&n), &vallen)
syscall_unix.go#L335: pp := (*RawSockaddrInet4)(unsafe.Pointer(&rsa))
syscall_unix.go#L336: port := (*[2]byte)(unsafe.Pointer(&pp.Port))
syscall_unix.go#L348: pp := (*RawSockaddrInet6)(unsafe.Pointer(&rsa))
syscall_unix.go#L349: port := (*[2]byte)(unsafe.Pointer(&pp.Port))
syscall_unix.go#L362: pp := (*RawSockaddrInet4)(unsafe.Pointer(&rsa))
syscall_unix.go#L363: port := (*[2]byte)(unsafe.Pointer(&pp.Port))
syscall_unix.go#L375: pp := (*RawSockaddrInet6)(unsafe.Pointer(&rsa))
syscall_unix.go#L376: port := (*[2]byte)(unsafe.Pointer(&pp.Port))
syscall_unix.go#L399: var ptr unsafe.Pointer
syscall_unix.go#L444: ptr unsafe.Pointer
syscall_unix.go#L457: return setsockopt(fd, level, opt, unsafe.Pointer(&value), 1)
syscall_unix.go#L462: return setsockopt(fd, level, opt, unsafe.Pointer(&n), 4)
syscall_unix.go#L466: return setsockopt(fd, level, opt, unsafe.Pointer(&value[0]), 4)
syscall_unix.go#L470: return setsockopt(fd, level, opt, unsafe.Pointer(mreq), SizeofIPMreq)
syscall_unix.go#L474: return setsockopt(fd, level, opt, unsafe.Pointer(mreq), SizeofIPv6Mreq)
syscall_unix.go#L478: return setsockopt(fd, level, opt, unsafe.Pointer(filter), SizeofICMPv6Filter)
syscall_unix.go#L482: return setsockopt(fd, level, opt, unsafe.Pointer(l), SizeofLinger)
syscall_unix.go#L486: var p unsafe.Pointer
syscall_unix.go#L488: p = unsafe.Pointer(&[]byte(s)[0])
syscall_unix.go#L494: return setsockopt(fd, level, opt, unsafe.Pointer(tv), unsafe.Sizeof(*tv))
syscall_unix.go#L517: race.ReleaseMerge(unsafe.Pointer(&ioSync))
zsyscall_linux_amd64.go#L18: _, _, e1 := Syscall(SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))
zsyscall_linux_amd64.go#L33: _, _, e1 := Syscall6(_SYS_faccessat2, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(flags), 0, 0)
zsyscall_linux_amd64.go#L48: _, _, e1 := Syscall(SYS_FCHMODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))
zsyscall_linux_amd64.go#L68: _, _, e1 := Syscall6(SYS_LINKAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), uintptr(flags), 0)
zsyscall_linux_amd64.go#L83: r0, _, e1 := Syscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags), uintptr(mode), 0, 0)
zsyscall_linux_amd64.go#L94: _, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)
zsyscall_linux_amd64.go#L109: var _p1 unsafe.Pointer
zsyscall_linux_amd64.go#L111: _p1 = unsafe.Pointer(&buf[0])
zsyscall_linux_amd64.go#L113: _p1 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L115: r0, _, e1 := Syscall6(SYS_READLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(buf)), 0, 0)
zsyscall_linux_amd64.go#L136: _, _, e1 := Syscall(SYS_SYMLINKAT, uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)))
zsyscall_linux_amd64.go#L151: _, _, e1 := Syscall(SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(flags))
zsyscall_linux_amd64.go#L166: _, _, e1 := Syscall6(SYS_UTIMENSAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), uintptr(flag), 0, 0)
zsyscall_linux_amd64.go#L176: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L178: _p0 = unsafe.Pointer(&buf[0])
zsyscall_linux_amd64.go#L180: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L193: r0, _, e1 := Syscall6(SYS_WAIT4, uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
zsyscall_linux_amd64.go#L213: func ptracePtr(request int, pid int, addr uintptr, data unsafe.Pointer) (err error) {
zsyscall_linux_amd64.go#L229: _, _, e1 := Syscall6(SYS_REBOOT, uintptr(magic1), uintptr(magic2), uintptr(cmd), uintptr(unsafe.Pointer(_p0)), 0, 0)
zsyscall_linux_amd64.go#L254: _, _, e1 := Syscall6(SYS_MOUNT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(unsafe.Pointer(_p2)), uintptr(flags), uintptr(unsafe.Pointer(data)), 0)
zsyscall_linux_amd64.go#L269: _, _, e1 := Syscall(SYS_ACCT, uintptr(unsafe.Pointer(_p0)), 0, 0)
zsyscall_linux_amd64.go#L279: r0, _, e1 := Syscall(SYS_ADJTIMEX, uintptr(unsafe.Pointer(buf)), 0, 0)
zsyscall_linux_amd64.go#L295: _, _, e1 := Syscall(SYS_CHDIR, uintptr(unsafe.Pointer(_p0)), 0, 0)
zsyscall_linux_amd64.go#L310: _, _, e1 := Syscall(SYS_CHROOT, uintptr(unsafe.Pointer(_p0)), 0, 0)
zsyscall_linux_amd64.go#L362: _, _, e1 := RawSyscall6(SYS_EPOLL_CTL, uintptr(epfd), uintptr(op), uintptr(fd), uintptr(unsafe.Pointer(event)), 0, 0)
zsyscall_linux_amd64.go#L407: _, _, e1 := Syscall6(SYS_FCHOWNAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(uid), uintptr(gid), uintptr(flags), 0)
zsyscall_linux_amd64.go#L458: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L460: _p0 = unsafe.Pointer(&buf[0])
zsyscall_linux_amd64.go#L462: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L513: _, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)
zsyscall_linux_amd64.go#L541: var _p2 unsafe.Pointer
zsyscall_linux_amd64.go#L543: _p2 = unsafe.Pointer(&dest[0])
zsyscall_linux_amd64.go#L545: _p2 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L547: r0, _, e1 := Syscall6(SYS_GETXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(_p2), uintptr(len(dest)), 0, 0)
zsyscall_linux_amd64.go#L563: r0, _, e1 := Syscall(SYS_INOTIFY_ADD_WATCH, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(mask))
zsyscall_linux_amd64.go#L606: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L608: _p0 = unsafe.Pointer(&buf[0])
zsyscall_linux_amd64.go#L610: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L628: var _p1 unsafe.Pointer
zsyscall_linux_amd64.go#L630: _p1 = unsafe.Pointer(&dest[0])
zsyscall_linux_amd64.go#L632: _p1 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L634: r0, _, e1 := Syscall(SYS_LISTXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(_p1), uintptr(len(dest)))
zsyscall_linux_amd64.go#L650: _, _, e1 := Syscall(SYS_MKDIRAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode))
zsyscall_linux_amd64.go#L665: _, _, e1 := Syscall6(SYS_MKNODAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev), 0, 0)
zsyscall_linux_amd64.go#L675: _, _, e1 := Syscall(SYS_NANOSLEEP, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)
zsyscall_linux_amd64.go#L695: _, _, e1 := Syscall(SYS_PIVOT_ROOT, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)
zsyscall_linux_amd64.go#L705: _, _, e1 := RawSyscall6(SYS_PRLIMIT64, uintptr(pid), uintptr(resource), uintptr(unsafe.Pointer(newlimit)), uintptr(unsafe.Pointer(old)), 0, 0)
zsyscall_linux_amd64.go#L715: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L717: _p0 = unsafe.Pointer(&p[0])
zsyscall_linux_amd64.go#L719: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L742: _, _, e1 := Syscall(SYS_REMOVEXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), 0)
zsyscall_linux_amd64.go#L752: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L754: _p0 = unsafe.Pointer(&p[0])
zsyscall_linux_amd64.go#L756: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L768: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L770: _p0 = unsafe.Pointer(&p[0])
zsyscall_linux_amd64.go#L772: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L805: _, _, e1 := RawSyscall(SYS_SETTIMEOFDAY, uintptr(unsafe.Pointer(tv)), 0, 0)
zsyscall_linux_amd64.go#L835: var _p2 unsafe.Pointer
zsyscall_linux_amd64.go#L837: _p2 = unsafe.Pointer(&data[0])
zsyscall_linux_amd64.go#L839: _p2 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L841: _, _, e1 := Syscall6(SYS_SETXATTR, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(_p2), uintptr(len(data)), uintptr(flags), 0)
zsyscall_linux_amd64.go#L858: _, _, e1 := RawSyscall(SYS_SYSINFO, uintptr(unsafe.Pointer(info)), 0, 0)
zsyscall_linux_amd64.go#L889: r0, _, e1 := RawSyscall(SYS_TIMES, uintptr(unsafe.Pointer(tms)), 0, 0)
zsyscall_linux_amd64.go#L908: _, _, e1 := RawSyscall(SYS_UNAME, uintptr(unsafe.Pointer(buf)), 0, 0)
zsyscall_linux_amd64.go#L923: _, _, e1 := Syscall(SYS_UMOUNT2, uintptr(unsafe.Pointer(_p0)), uintptr(flags), 0)
zsyscall_linux_amd64.go#L943: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L945: _p0 = unsafe.Pointer(&p[0])
zsyscall_linux_amd64.go#L947: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L970: r0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(p)), uintptr(np))
zsyscall_linux_amd64.go#L981: r0, _, e1 := Syscall(SYS_WRITE, uintptr(fd), uintptr(unsafe.Pointer(p)), uintptr(np))
zsyscall_linux_amd64.go#L1002: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1004: _p0 = unsafe.Pointer(&b[0])
zsyscall_linux_amd64.go#L1006: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1018: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1020: _p0 = unsafe.Pointer(&b[0])
zsyscall_linux_amd64.go#L1022: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1034: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1036: _p0 = unsafe.Pointer(&b[0])
zsyscall_linux_amd64.go#L1038: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1050: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1052: _p0 = unsafe.Pointer(&b[0])
zsyscall_linux_amd64.go#L1054: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1106: _, _, e1 := Syscall(SYS_FSTAT, uintptr(fd), uintptr(unsafe.Pointer(stat)), 0)
zsyscall_linux_amd64.go#L1116: _, _, e1 := Syscall(SYS_FSTATFS, uintptr(fd), uintptr(unsafe.Pointer(buf)), 0)
zsyscall_linux_amd64.go#L1160: _, _, e1 := RawSyscall(SYS_GETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)
zsyscall_linux_amd64.go#L1229: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1231: _p0 = unsafe.Pointer(&p[0])
zsyscall_linux_amd64.go#L1233: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1246: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1248: _p0 = unsafe.Pointer(&p[0])
zsyscall_linux_amd64.go#L1250: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1273: _, _, e1 := Syscall6(SYS_RENAMEAT, uintptr(olddirfd), uintptr(unsafe.Pointer(_p0)), uintptr(newdirfd), uintptr(unsafe.Pointer(_p1)), 0, 0)
zsyscall_linux_amd64.go#L1294: r0, _, e1 := Syscall6(SYS_SELECT, uintptr(nfd), uintptr(unsafe.Pointer(r)), uintptr(unsafe.Pointer(w)), uintptr(unsafe.Pointer(e)), uintptr(unsafe.Pointer(timeout)), 0)
zsyscall_linux_amd64.go#L1305: r0, _, e1 := Syscall6(SYS_SENDFILE, uintptr(outfd), uintptr(infd), uintptr(unsafe.Pointer(offset)), uintptr(count), 0, 0)
zsyscall_linux_amd64.go#L1336: _, _, e1 := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)
zsyscall_linux_amd64.go#L1356: r0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))
zsyscall_linux_amd64.go#L1372: _, _, e1 := Syscall(SYS_STATFS, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)
zsyscall_linux_amd64.go#L1397: _, _, e1 := Syscall(SYS_TRUNCATE, uintptr(unsafe.Pointer(_p0)), uintptr(length), 0)
zsyscall_linux_amd64.go#L1407: _, _, e1 := Syscall(SYS_USTAT, uintptr(dev), uintptr(unsafe.Pointer(ubuf)), 0)
zsyscall_linux_amd64.go#L1417: r0, _, e1 := Syscall6(SYS_ACCEPT4, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)), uintptr(flags), 0, 0)
zsyscall_linux_amd64.go#L1427: func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
zsyscall_linux_amd64.go#L1437: func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
zsyscall_linux_amd64.go#L1453: _, _, e1 := Syscall6(SYS_NEWFSTATAT, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0)
zsyscall_linux_amd64.go#L1463: r0, _, e1 := RawSyscall(SYS_GETGROUPS, uintptr(n), uintptr(unsafe.Pointer(list)), 0)
zsyscall_linux_amd64.go#L1473: func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) {
zsyscall_linux_amd64.go#L1474: _, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)
zsyscall_linux_amd64.go#L1483: func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {
zsyscall_linux_amd64.go#L1505: _, _, e1 := RawSyscall6(SYS_SOCKETPAIR, uintptr(domain), uintptr(typ), uintptr(proto), uintptr(unsafe.Pointer(fd)), 0, 0)
zsyscall_linux_amd64.go#L1515: _, _, e1 := RawSyscall(SYS_GETPEERNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))
zsyscall_linux_amd64.go#L1525: _, _, e1 := RawSyscall(SYS_GETSOCKNAME, uintptr(fd), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))
zsyscall_linux_amd64.go#L1535: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1537: _p0 = unsafe.Pointer(&p[0])
zsyscall_linux_amd64.go#L1539: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1541: r0, _, e1 := Syscall6(SYS_RECVFROM, uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))
zsyscall_linux_amd64.go#L1551: func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {
zsyscall_linux_amd64.go#L1552: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1554: _p0 = unsafe.Pointer(&buf[0])
zsyscall_linux_amd64.go#L1556: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1568: r0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))
zsyscall_linux_amd64.go#L1579: r0, _, e1 := Syscall(SYS_SENDMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))
zsyscall_linux_amd64.go#L1601: var _p0 unsafe.Pointer
zsyscall_linux_amd64.go#L1603: _p0 = unsafe.Pointer(&events[0])
zsyscall_linux_amd64.go#L1605: _p0 = unsafe.Pointer(&_zero)
zsyscall_linux_amd64.go#L1623: _, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)))
zsyscall_linux_amd64.go#L1638: _, _, e1 := Syscall(SYS_UTIME, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(buf)), 0)
zsyscall_linux_amd64.go#L1653: _, _, e1 := Syscall(SYS_UTIMES, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(times)), 0)
vendor/golang.org/x/crypto/internal/alias
alias.go#L17: uintptr(unsafe.Pointer(&x[0])) <= uintptr(unsafe.Pointer(&y[len(y)-1])) &&
alias.go#L18: uintptr(unsafe.Pointer(&y[0])) <= uintptr(unsafe.Pointer(&x[len(x)-1]))
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |