Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nextSymbol (0.09 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    				continue
    			}
    		}
    		// Reset on unrecognized lines.
    		function, file, line = "", "", 0
    	}
    
    	return assembly, nil
    }
    
    // nextSymbol parses the nm output to find the next symbol listed.
    // Skips over any output it cannot recognize.
    func nextSymbol(buf *bytes.Buffer) (uint64, string, error) {
    	for {
    		line, err := buf.ReadString('\n')
    		if err != nil {
    			if err != io.EOF || line == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. 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