Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkOffset (0.11 sec)

  1. src/cmd/link/internal/ld/pe.go

    	sizeOfRawData        uint32
    	pointerToRawData     uint32
    	pointerToRelocations uint32
    	numberOfRelocations  uint16
    	characteristics      uint32
    }
    
    // checkOffset verifies COFF section sect offset in the file.
    func (sect *peSection) checkOffset(off int64) {
    	if off != int64(sect.pointerToRawData) {
    		Errorf(nil, "%s.PointerToRawData = %#x, want %#x", sect.name, uint64(int64(sect.pointerToRawData)), uint64(off))
    		errorexit()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	if index < 0 || index > maxindex {
    		c.ctxt.Diag("register element index out of range 0 to %d: %v", maxindex, p)
    	}
    }
    
    /* checkoffset checks whether the immediate offset is valid for VLD[1-4].P and VST[1-4].P */
    func (c *ctxt7) checkoffset(p *obj.Prog, as obj.As) {
    	var offset, list, n, expect int64
    	switch as {
    	case AVLD1, AVLD2, AVLD3, AVLD4, AVLD1R, AVLD2R, AVLD3R, AVLD4R:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    data reached (data length = "+this.length+", asked index = "+a+"). Corrupted zip ?")},setIndex:function(a){this.checkIndex(a),this.index=a},skip:function(a){this.setIndex(this.index+a)},byteAt:function(){},readInt:function(a){var b,c=0;for(this.checkOffset(a),b=this.index+a-1;b>=this.index;b--)c=(c<<8)+this.byteAt(b);return this.index+=a,c},readString:function(a){return d.transformTo("string",this.readData(a))},readData:function(){},lastIndexOfSignature:function(){},readDate:function(){var a=this.readInt(4);return...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top