Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toBaseline (0.13 sec)

  1. src/internal/zstd/fse_test.go

    	tests := []struct {
    		name         string
    		distribution []int16
    		tableBits    int
    		toBaseline   func(*Reader, int, []fseEntry, []fseBaselineEntry) error
    		predef       []fseBaselineEntry
    	}{
    		{
    			name:         "literal",
    			distribution: literalPredefinedDistribution,
    			tableBits:    6,
    			toBaseline:   (*Reader).makeLiteralBaselineFSE,
    			predef:       predefinedLiteralTable[:],
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/internal/zstd/block.go

    	predefTableBits int                // number of bits in predefTable
    	maxSym          int                // max symbol value in FSE
    	maxBits         int                // max bits for FSE
    
    	// toBaseline converts from an FSE table to an FSE baseline table.
    	toBaseline func(*Reader, int, []fseEntry, []fseBaselineEntry) error
    }
    
    // seqCodeInfo is the seqCodeInfoData for each kind of sequence code.
    var seqCodeInfo = [3]seqCodeInfoData{
    	seqLiteral: {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top