Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sevenBitS (0.5 sec)

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

    }
    
    // sevenBitU returns the unsigned LEB128 encoding of v if v is seven bits and nil otherwise.
    // The contents of the returned slice must not be modified.
    func sevenBitU(v int64) []byte {
    	if uint64(v) < uint64(len(sevenbits)) {
    		return sevenbits[v : v+1]
    	}
    	return nil
    }
    
    // sevenBitS returns the signed LEB128 encoding of v if v is seven bits and nil otherwise.
    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