runtime/internal/sys
import "runtime/internal/sys"
- 概况
- 索引
概况
包 sys 包含运行时使用的系统和配置以及特定于体系结构的常量。
索引
- 常量
- func Bswap32(x uint32) uint32
- func Bswap64(x uint64) uint64
- func Ctz32(x uint32) int
- func Ctz64(x uint64) int
- type ArchFamilyType
- type Uintreg
包文件
常量
const (
ArchFamily = AMD64
BigEndian = 0
CacheLineSize = 64
DefaultPhysPageSize = 4096
PCQuantum = 1
Int64Align = 8
HugePageSize = 1 << 21
MinFrameSize = 0
)const GOARCH = `amd64`const GOOS = `linux`const Goarch386 = 0const GoarchAmd64 = 1const GoarchAmd64p32 = 0const GoarchArm = 0const GoarchArm64 = 0const GoarchArm64be = 0const GoarchArmbe = 0const GoarchMips = 0const GoarchMips64 = 0const GoarchMips64le = 0const GoarchMips64p32 = 0const GoarchMips64p32le = 0const GoarchMipsle = 0const GoarchPpc = 0const GoarchPpc64 = 0const GoarchPpc64le = 0const GoarchS390 = 0const GoarchS390x = 0const GoarchSparc = 0const GoarchSparc64 = 0const GoosAndroid = 0const GoosDarwin = 0const GoosDragonfly = 0const GoosFreebsd = 0const GoosLinux = 1const GoosNacl = 0const GoosNetbsd = 0const GoosOpenbsd = 0const GoosPlan9 = 0const GoosSolaris = 0const GoosWindows = 0const PtrSize = 4 << (^uintptr(0) >> 63) // unsafe.Sizeof(uintptr(0)) but an ideal constconst RegSize = 4 << (^Uintreg(0) >> 63) // unsafe.Sizeof(uintreg(0)) but an ideal constconst SpAlign = 1*(1-GoarchArm64) + 16*GoarchArm64func Bswap32Source
func Bswap32(x uint32) uint32Bswap32 返回其输入字节顺序颠倒 0x01020304 - > 0x04030201
func Bswap64Source
func Bswap64(x uint64) uint64Bswap64 返回其输入字节顺序颠倒 0x0102030405060708 - > 0x0807060504030201
func Ctz32Source
func Ctz32(x uint32) intCtz32 计算结尾(低位)零,如果全都为零,则为32。
func Ctz64Source
func Ctz64(x uint64) intCtz64 计算结尾(低位)零,如果全部为零,则计数为64。
type ArchFamilyTypeSource
type ArchFamilyType intconst (
AMD64 ArchFamilyType = iota
ARM
ARM64
I386
MIPS
MIPS64
PPC64
S390X
)type UintregSource
type Uintreg uint64本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com

