runtime._type.align (field)
10 uses
runtime (current package)
chan.go#L78: if hchanSize%maxAlign != 0 || elem.align > maxAlign {
checkptr.go#L14: if elem.ptrdata != 0 && uintptr(p)&(uintptr(elem.align)-1) != 0 {
map.go#L1291: if t.key.align > bucketCnt {
map.go#L1294: if t.elem.align > bucketCnt {
map.go#L1297: if t.key.size%uintptr(t.key.align) != 0 {
map.go#L1300: if t.elem.size%uintptr(t.elem.align) != 0 {
map.go#L1306: if dataOffset%uintptr(t.key.align) != 0 {
map.go#L1309: if dataOffset%uintptr(t.elem.align) != 0 {
mfinal.go#L410: nret = alignUp(nret, uintptr(t.align)) + uintptr(t.size)
type.go#L36: align uint8
![]() |
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. |