tableStep returns the next table index.
(tableSize uint32)
| 45 | |
| 46 | // tableStep returns the next table index. |
| 47 | func tableStep(tableSize uint32) uint32 { |
| 48 | return (tableSize >> 1) + (tableSize >> 3) + 3 |
| 49 | } |
| 50 | |
| 51 | // readNCount will read the symbol distribution so decoding tables can be constructed. |
| 52 | func (s *fseDecoder) readNCount(b *byteReader, maxSymbol uint16) error { |
no outgoing calls
searching dependent graphs…