Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DataIdx (0.06 sec)

  1. src/internal/pkgbits/decoder.go

    	}
    	if absIdx >= int(pr.elemEndsEnds[k]) {
    		errorf("%v:%v is out of bounds; %v", k, idx, pr.elemEndsEnds)
    	}
    	return absIdx
    }
    
    // DataIdx returns the raw element bitstream for the given (section,
    // index) pair.
    func (pr *PkgDecoder) DataIdx(k RelocKind, idx Index) string {
    	absIdx := pr.AbsIdx(k, idx)
    
    	var start uint32
    	if absIdx > 0 {
    		start = pr.elemEnds[absIdx-1]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
Back to top