Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for elemEndsEnds (0.15 sec)

  1. src/internal/pkgbits/decoder.go

    	// Note: elemEnds is indexed by absolute indices, not
    	// section-relative indices.
    	elemEnds []uint32
    
    	// elemEndsEnds stores the index-offset end positions of relocation
    	// sections within elemEnds.
    	//
    	// For example, section K's end positions start at elemEndsEnds[K-1]
    	// (or 0, if K==0) and end at elemEndsEnds[K].
    	elemEndsEnds [numRelocs]uint32
    
    	scratchRelocEnt []RelocEnt
    }
    
    // PkgPath returns the package path for the package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  2. src/internal/pkgbits/encoder.go

    		assert(binary.Write(out, binary.LittleEndian, x) == nil)
    	}
    
    	writeUint32(currentVersion)
    
    	var flags uint32
    	if pw.SyncMarkers() {
    		flags |= flagSyncMarkers
    	}
    	writeUint32(flags)
    
    	// Write elemEndsEnds.
    	var sum uint32
    	for _, elems := range &pw.elems {
    		sum += uint32(len(elems))
    		writeUint32(sum)
    	}
    
    	// Write elemEnds.
    	sum = 0
    	for _, elems := range &pw.elems {
    		for _, elem := range elems {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top