internal/abi.FuncType.InCount (field)

23 uses

	internal/abi (current package)
		type.go#L523: 	InCount  uint16
		type.go#L532: 	return int(t.InCount)
		type.go#L548: 	if t.InCount == 0 {
		type.go#L551: 	return (*[1 << 16]*Type)(addChecked(unsafe.Pointer(t), uadd, "t.inCount > 0"))[:t.InCount:t.InCount]
		type.go#L562: 	return (*[1 << 17]*Type)(addChecked(unsafe.Pointer(t), uadd, "outCount > 0"))[t.InCount : t.InCount+outCount : t.InCount+outCount]

	internal/reflectlite
		type.go#L354: 	return int(tt.InCount)
		type.go#L568: 		if t.OutCount != v.OutCount || t.InCount != v.InCount {

	reflect
		type.go#L901: 	if f.InCount != 1 || f.OutCount != 0 {
		type.go#L909: 	return yield.InCount == 1 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
		type.go#L929: 	if f.InCount != 1 || f.OutCount != 0 {
		type.go#L937: 	return yield.InCount == 2 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
		type.go#L1569: 		if t.OutCount != v.OutCount || t.InCount != v.InCount {
		type.go#L1950: 	ft.InCount = uint16(len(in))
		type.go#L2010: 		if ft.IsVariadic() && i == int(ft.InCount)-1 {
		value.go#L711: 	in := make([]Value, 0, int(ftyp.InCount))

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