Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,073 for offset_ (0.1 sec)

  1. src/cmd/internal/obj/arm/obj5.go

    		}
    		offset := p.To.Offset
    		p.As = AMOVW
    		p.From.Type = obj.TYPE_MEM
    		p.From.Name = obj.NAME_GOTREF
    		p.From.Sym = sym
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = REG_R9
    		p.To.Name = obj.NAME_NONE
    		p.To.Offset = 0
    		p.To.Sym = nil
    		p1 := obj.Appendp(p, c.newprog)
    		p1.As = AADD
    		p1.From.Type = obj.TYPE_CONST
    		p1.From.Offset = offset
    		p1.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    					p.AddRestSource(obj.Addr{Type: obj.TYPE_CONST, Offset: p.To.Offset, Sym: p.To.Sym})
    					p.From = obj.Addr{Type: obj.TYPE_CONST, Offset: 0}
    					p.Reg = obj.REG_NONE
    					p.To = obj.Addr{Type: obj.TYPE_REG, Reg: REG_TMP}
    
    					rescan = true
    					break
    				}
    				offset := p.To.Target().Pc - p.Pc
    				if offset < -(1<<20) || (1<<20) <= offset {
    					// Replace with 2-instruction sequence. This assumes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/runtime/symtab.go

    	funcnameOffset uintptr // offset to the funcnametab variable from pcHeader
    	cuOffset       uintptr // offset to the cutab variable from pcHeader
    	filetabOffset  uintptr // offset to the filetab variable from pcHeader
    	pctabOffset    uintptr // offset to the pctab variable from pcHeader
    	pclnOffset     uintptr // offset to the pclntab variable from pcHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/memcombine.go

    		if p != base {
    			return false
    		}
    		r[i] = LoadRecord{load: load, offset: off, shift: shift}
    	}
    
    	// Sort in memory address order.
    	sort.Slice(r, func(i, j int) bool {
    		return r[i].offset < r[j].offset
    	})
    
    	// Check that we have contiguous offsets.
    	for i := int64(0); i < n; i++ {
    		if r[i].offset != r[0].offset+i*size {
    			return false
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. src/internal/coverage/defs.go

    // area storing the offsets of each section. Format of the meta-data
    // file looks like:
    //
    // --header----------
    //  | magic: [4]byte magic string
    //  | version
    //  | total length of meta-data file in bytes
    //  | numPkgs: number of package entries in file
    //  | hash: [16]byte hash of entire meta-data payload
    //  | offset to string table section
    //  | length of string table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    // and if the offsets match, if they are available.
    func adjacent(m1, m2 *Mapping) bool {
    	if m1.File != "" && m2.File != "" {
    		if m1.File != m2.File {
    			return false
    		}
    	}
    	if m1.BuildID != "" && m2.BuildID != "" {
    		if m1.BuildID != m2.BuildID {
    			return false
    		}
    	}
    	if m1.Limit != m2.Start {
    		return false
    	}
    	if m1.Offset != 0 && m2.Offset != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue6036.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 6036: 6g's backend generates OINDREG with
    // offsets larger than 32-bit.
    
    package main
    
    type T struct {
    	Large [1 << 31]byte
    	A     int
    	B     int
    }
    
    func F(t *T) {
    	t.B = t.A
    }
    
    type T2 [1<<31 + 2]byte
    
    func F2(t *T2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 652 bytes
    - Viewed (0)
  8. src/io/io.go

    var errOffset = errors.New("Seek: invalid offset")
    
    func (s *SectionReader) Seek(offset int64, whence int) (int64, error) {
    	switch whence {
    	default:
    		return 0, errWhence
    	case SeekStart:
    		offset += s.base
    	case SeekCurrent:
    		offset += s.off
    	case SeekEnd:
    		offset += s.limit
    	}
    	if offset < s.base {
    		return 0, errOffset
    	}
    	s.off = offset
    	return offset - s.base, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. src/debug/dwarf/type.go

    // types section.
    type typeReader interface {
    	Seek(Offset)
    	Next() (*Entry, error)
    	clone() typeReader
    	offset() Offset
    	// AddressSize returns the size in bytes of addresses in the current
    	// compilation unit.
    	AddressSize() int
    }
    
    // Type reads the type at off in the DWARF “info” section.
    func (d *Data) Type(off Offset) (Type, error) {
    	return d.readType("info", d.Reader(), off, d.typeCache, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. src/runtime/sys_windows_386.s

    	// TODO: don't use the arbitrary pointer (see go.dev/issue/59824)
    	MOVL	$TEB_ArbitraryPtr, CX
    	JMP	settls
    ok:
    	// Convert the TLS index at CX into
    	// an offset from TEB_TlsSlots.
    	SHLL	$2, CX
    
    	// Save offset from TLS into tls_g.
    	ADDL	$TEB_TlsSlots, CX
    settls:
    	MOVL	CX, runtime·tls_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top