type internal/abi.Offset

31 uses

	internal/abi (current package)
		compiletype.go#L44: type Offset struct {
		compiletype.go#L52: func NewOffset(ptrSize uint8, twoWordAlignSlices bool) Offset {
		compiletype.go#L54: 		return Offset{off: 0, align: 1, ptrSize: ptrSize, sliceAlign: 2 * ptrSize}
		compiletype.go#L56: 	return Offset{off: 0, align: 1, ptrSize: ptrSize, sliceAlign: ptrSize}
		compiletype.go#L70: func InitializedOffset(off int, align uint8, ptrSize uint8, twoWordAlignSlices bool) Offset {
		compiletype.go#L78: func (o Offset) align_(a uint8) Offset {
		compiletype.go#L88: func (o Offset) Align(a uint8) Offset {
		compiletype.go#L94: func (o Offset) plus(x uint64) Offset {
		compiletype.go#L101: func (o Offset) D8() Offset {
		compiletype.go#L106: func (o Offset) D16() Offset {
		compiletype.go#L111: func (o Offset) D32() Offset {
		compiletype.go#L116: func (o Offset) D64() Offset {
		compiletype.go#L121: func (o Offset) P() Offset {
		compiletype.go#L129: func (o Offset) Slice() Offset {
		compiletype.go#L140: func (o Offset) String() Offset {
		compiletype.go#L147: func (o Offset) Interface() Offset {
		compiletype.go#L155: func (o Offset) Offset() uint64 {
		compiletype.go#L159: func (o Offset) PlusUncommon() Offset {
		compiletype.go#L165: func CommonOffset(ptrSize int, twoWordAlignSlices bool) Offset {