internal/abi.FuncType.InCount (field)

23 uses

	internal/abi (current package)
		type.go#L499: 	InCount  uint16
		type.go#L508: 	return int(t.InCount)
		type.go#L524: 	if t.InCount == 0 {
		type.go#L527: 	return (*[1 << 16]*Type)(addChecked(unsafe.Pointer(t), uadd, "t.inCount > 0"))[:t.InCount:t.InCount]
		type.go#L538: 	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#L898: 	if f.InCount != 1 || f.OutCount != 0 {
		type.go#L906: 	return yield.InCount == 1 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
		type.go#L926: 	if f.InCount != 1 || f.OutCount != 0 {
		type.go#L934: 	return yield.InCount == 2 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
		type.go#L1591: 		if t.OutCount != v.OutCount || t.InCount != v.InCount {
		type.go#L1899: 	ft.InCount = uint16(len(in))
		type.go#L1959: 		if ft.IsVariadic() && i == int(ft.InCount)-1 {
		value.go#L708: 	in := make([]Value, 0, int(ftyp.InCount))

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