runContainer16SerializedSizeInBytes returns the number of bytes of disk required to hold numRuns in a runContainer16.
(numRuns int)
| 1014 | // runContainer16SerializedSizeInBytes returns the number of bytes of disk |
| 1015 | // required to hold numRuns in a runContainer16. |
| 1016 | func runContainer16SerializedSizeInBytes(numRuns int) int { |
| 1017 | return perIntervalRc16Size*numRuns + baseRc16Size |
| 1018 | } |
| 1019 | |
| 1020 | // Add adds a single value k to the set. |
| 1021 | func (rc *runContainer16) Add(k uint16) (wasNew bool) { |
no outgoing calls
searching dependent graphs…