func unsafe.Offsetof

30 uses

	unsafe (current package)
		unsafe.go#L204: func Offsetof(x ArbitraryType) uintptr

	internal/bytealg
		bytealg.go#L14: 	offsetX86HasSSE42  = unsafe.Offsetof(cpu.X86.HasSSE42)
		bytealg.go#L15: 	offsetX86HasAVX2   = unsafe.Offsetof(cpu.X86.HasAVX2)
		bytealg.go#L16: 	offsetX86HasPOPCNT = unsafe.Offsetof(cpu.X86.HasPOPCNT)
		bytealg.go#L18: 	offsetS390xHasVX = unsafe.Offsetof(cpu.S390X.HasVX)
		bytealg.go#L20: 	offsetPPC64HasPOWER9 = unsafe.Offsetof(cpu.PPC64.IsPOWER9)

	os
		dir_unix.go#L99: 		const namoff = uint64(unsafe.Offsetof(syscall.Dirent{}.Name))
		dirent_linux.go#L13: 	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Ino), unsafe.Sizeof(syscall.Dirent{}.Ino))
		dirent_linux.go#L17: 	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Reclen), unsafe.Sizeof(syscall.Dirent{}.Reclen))
		dirent_linux.go#L25: 	return reclen - uint64(unsafe.Offsetof(syscall.Dirent{}.Name)), true
		dirent_linux.go#L29: 	off := unsafe.Offsetof(syscall.Dirent{}.Type)

	runtime
		cpuflags.go#L14: 	offsetX86HasAVX    = unsafe.Offsetof(cpu.X86.HasAVX)
		cpuflags.go#L15: 	offsetX86HasAVX2   = unsafe.Offsetof(cpu.X86.HasAVX2)
		cpuflags.go#L16: 	offsetX86HasERMS   = unsafe.Offsetof(cpu.X86.HasERMS)
		cpuflags.go#L17: 	offsetX86HasRDTSCP = unsafe.Offsetof(cpu.X86.HasRDTSCP)
		cpuflags.go#L19: 	offsetARMHasIDIVA = unsafe.Offsetof(cpu.ARM.HasIDIVA)
		cpuflags.go#L21: 	offsetMIPS64XHasMSA = unsafe.Offsetof(cpu.MIPS64X.HasMSA)
		map.go#L85: 	dataOffset = unsafe.Offsetof(struct {
		mfinal.go#L115: 					unsafe.Offsetof(finalizer{}.fn) != 0 ||
		mfinal.go#L116: 					unsafe.Offsetof(finalizer{}.arg) != goarch.PtrSize ||
		mfinal.go#L117: 					unsafe.Offsetof(finalizer{}.nret) != 2*goarch.PtrSize ||
		mfinal.go#L118: 					unsafe.Offsetof(finalizer{}.fint) != 3*goarch.PtrSize ||
		mfinal.go#L119: 					unsafe.Offsetof(finalizer{}.ot) != 4*goarch.PtrSize) {
		mheap.go#L2254: 	if uintptr(unsafe.Offsetof(gcBitsArena{}.bits))&7 == 0 {
		mstats.go#L341: 	if offset := unsafe.Offsetof(memstats.heapStats); offset%8 != 0 {
		runtime1.go#L207: 	if unsafe.Offsetof(y1.y) != 1 {

	syscall
		dirent.go#L86: 		const namoff = uint64(unsafe.Offsetof(Dirent{}.Name))
		syscall_linux.go#L993: 	return readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))
		syscall_linux.go#L997: 	return readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))
		syscall_linux.go#L1005: 	return reclen - uint64(unsafe.Offsetof(Dirent{}.Name)), true