Source File
regmask_amd64.go
Belonging Package
github.com/klauspost/compress/flate
package flateconst (// Masks for shifts with register sizes of the shift value.// This can be used to work around the x86 design of shifting by mod register size.// It can be used when a variable shift is always smaller than the register size.// reg8SizeMaskX - shift value is 8 bits, shifted is Xreg8SizeMask8 = 7reg8SizeMask16 = 15reg8SizeMask32 = 31reg8SizeMask64 = 63// reg16SizeMaskX - shift value is 16 bits, shifted is Xreg16SizeMask8 = reg8SizeMask8reg16SizeMask16 = reg8SizeMask16reg16SizeMask32 = reg8SizeMask32reg16SizeMask64 = reg8SizeMask64// reg32SizeMaskX - shift value is 32 bits, shifted is Xreg32SizeMask8 = reg8SizeMask8reg32SizeMask16 = reg8SizeMask16reg32SizeMask32 = reg8SizeMask32reg32SizeMask64 = reg8SizeMask64// reg64SizeMaskX - shift value is 64 bits, shifted is Xreg64SizeMask8 = reg8SizeMask8reg64SizeMask16 = reg8SizeMask16reg64SizeMask32 = reg8SizeMask32reg64SizeMask64 = reg8SizeMask64// regSizeMaskUintX - shift value is uint, shifted is XregSizeMaskUint8 = reg8SizeMask8regSizeMaskUint16 = reg8SizeMask16regSizeMaskUint32 = reg8SizeMask32regSizeMaskUint64 = reg8SizeMask64)
![]() |
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. |