reflect.Type.Size (method)

6 uses

	reflect (current package)
		type.go#L90: 	Size() uintptr
		value.go#L500: 			if tv.Size() != 0 {
		value.go#L512: 			off += tv.Size()

	encoding/asn1
		asn1.go#L898: 		if val.Type().Size() == 4 {

	encoding/binary
		binary.go#L450: 		return int(t.Size())

	encoding/gob
		decode.go#L616: 	size := uint64(typ.Elem().Size())