MCPcopy Index your code
hub / github.com/klauspost/compress / tableStep

Function tableStep

zstd/fse_decoder.go:47–49  ·  view source on GitHub ↗

tableStep returns the next table index.

(tableSize uint32)

Source from the content-addressed store, hash-verified

45
46// tableStep returns the next table index.
47func 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.
52func (s *fseDecoder) readNCount(b *byteReader, maxSymbol uint16) error {

Callers 3

buildCTableMethod · 0.70
buildDtableRefFunction · 0.70
buildDtableMethod · 0.70

Calls

no outgoing calls

Tested by 1

buildDtableRefFunction · 0.56

Used in the wild real call sites across dependent graphs

searching dependent graphs…