Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AppendUleb128 (0.17 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    	var buf []byte
    	for i := 1; i < len(abbrevs); i++ {
    		// See section 7.5.3
    		buf = AppendUleb128(buf, uint64(i))
    		buf = AppendUleb128(buf, uint64(abbrevs[i].tag))
    		buf = append(buf, abbrevs[i].children)
    		for _, f := range abbrevs[i].attr {
    			buf = AppendUleb128(buf, uint64(f.attr))
    			buf = AppendUleb128(buf, uint64(f.form))
    		}
    		buf = append(buf, 0, 0)
    	}
    	return append(buf, 0)
    }
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top