Source File
lfstack_64bit.go
Belonging Package
runtime
package runtime
import
addrBits = 48
aixAddrBits = 57
aixCntBits = 64 - aixAddrBits + 3
)
func ( *lfnode, uintptr) uint64 {
if GOARCH == "ppc64" && GOOS == "aix" {
return uint64(uintptr(unsafe.Pointer()))<<(64-aixAddrBits) | uint64(&(1<<aixCntBits-1))
}
return uint64(uintptr(unsafe.Pointer()))<<(64-addrBits) | uint64(&(1<<cntBits-1))
}
func ( uint64) *lfnode {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |