Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseAbbrev (0.16 sec)

  1. src/debug/dwarf/typeunit.go

    			b.error("unsupported DWARF version " + strconv.Itoa(vers))
    			return b.err
    		}
    		var ao uint64
    		if !dwarf64 {
    			ao = uint64(b.uint32())
    		} else {
    			ao = b.uint64()
    		}
    		atable, err := d.parseAbbrev(ao, vers)
    		if err != nil {
    			return err
    		}
    		asize := b.uint8()
    		sig := b.uint64()
    
    		var toff uint32
    		if !dwarf64 {
    			toff = b.uint32()
    		} else {
    			to64 := b.uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top