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 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |