Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for symbolRangeUsedBitmap (0.41 sec)

  1. src/compress/bzip2/bzip2.go

    	// the symbol set is reduced. The symbols used are stored as a
    	// two-level, 16x16 bitmap.
    	symbolRangeUsedBitmap := br.ReadBits(16)
    	symbolPresent := make([]bool, 256)
    	numSymbols := 0
    	for symRange := uint(0); symRange < 16; symRange++ {
    		if symbolRangeUsedBitmap&(1<<(15-symRange)) != 0 {
    			bits := br.ReadBits(16)
    			for symbol := uint(0); symbol < 16; symbol++ {
    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