internal/abi.FuncType.OutCount (field)

11 uses

	internal/abi (current package)
		type.go#L497: 	OutCount uint16 // top bit is set if last input parameter is ...
		type.go#L509: 	return int(t.OutCount & (1<<15 - 1))
		type.go#L539: 	return t.OutCount&(1<<15) != 0

	internal/reflectlite
		type.go#L579: 		if t.OutCount != v.OutCount || t.InCount != v.InCount {

	reflect
		type.go#L1428: 		if t.OutCount != v.OutCount || t.InCount != v.InCount {
		type.go#L1790: 	ft.OutCount = uint16(len(out))
		type.go#L1792: 		ft.OutCount |= 1 << 15

	runtime
		type.go#L378: 		if ft.OutCount != fv.OutCount || ft.InCount != fv.InCount {