runtime.name.data (method)
11 uses
runtime (current package)
type.go#L454: func (n name) data(off int) *byte {
type.go#L463: return int(uint16(*n.data(1))<<8 | uint16(*n.data(2)))
type.go#L467: if *n.data(0)&(1<<1) == 0 {
type.go#L471: return int(uint16(*n.data(off))<<8 | uint16(*n.data(off + 1)))
type.go#L483: hdr.str = unsafe.Pointer(n.data(3))
type.go#L495: hdr.str = unsafe.Pointer(n.data(3 + nl + 2))
type.go#L501: if n.bytes == nil || *n.data(0)&(1<<2) == 0 {
type.go#L509: copy((*[4]byte)(unsafe.Pointer(&nameOff))[:], (*[4]byte)(unsafe.Pointer(n.data(off)))[:])
type.go#L521: return *n.data(3) == '_'
 |
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. |