Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nextSymbol (0.11 sec)

  1. src/compress/bzip2/bzip2.go

    	}
    
    	// The list of symbols for the move-to-front transform is taken from
    	// the previously decoded symbol bitmap.
    	symbols := make([]byte, numSymbols)
    	nextSymbol := 0
    	for i := 0; i < 256; i++ {
    		if symbolPresent[i] {
    			symbols[nextSymbol] = byte(i)
    			nextSymbol++
    		}
    	}
    	mtf := newMTFDecoder(symbols)
    
    	numSymbols += 2 // to account for RUNA and RUNB symbols
    	huffmanTrees := make([]huffmanTree, numHuffmanTrees)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top