internal/abi.FuncType.InCount (field)

19 uses

	internal/abi (current package)
		type.go#L496: 	InCount  uint16
		type.go#L505: 	return int(t.InCount)
		type.go#L521: 	if t.InCount == 0 {
		type.go#L524: 	return (*[1 << 16]*Type)(addChecked(unsafe.Pointer(t), uadd, "t.inCount > 0"))[:t.InCount:t.InCount]
		type.go#L535: 	return (*[1 << 17]*Type)(addChecked(unsafe.Pointer(t), uadd, "outCount > 0"))[t.InCount : t.InCount+outCount : t.InCount+outCount]

	internal/reflectlite
		type.go#L364: 	return int(tt.InCount)
		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#L1789: 	ft.InCount = uint16(len(in))
		type.go#L1849: 		if ft.IsVariadic() && i == int(ft.InCount)-1 {
		value.go#L723: 	in := make([]Value, 0, int(ftyp.InCount))

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