Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for vaddr (0.07 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		// address where the first byte of the segment is loaded
    		// (loadSegment.Vaddr). A file offset fx maps to a virtual (symbol) address
    		// sx = fx - loadSegment.Off + loadSegment.Vaddr.
    		//
    		// Thus, a runtime virtual address x maps to a symbol address
    		// sx = x - start + offset - loadSegment.Off + loadSegment.Vaddr.
    		return start - offset + loadSegment.Off - loadSegment.Vaddr, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    			f(ctxt, s)
    		}
    		addr += int64(len(P))
    		siz := ldr.SymSize(s)
    		if addr < val+siz {
    			out.WriteStringPad("", int(val+siz-addr), pad)
    			addr = val + siz
    		}
    		if addr != val+siz {
    			ldr.Errorf(s, "phase error: addr=%#x value+size=%#x", addr, val+siz)
    			errorexit()
    		}
    		if val+siz >= eaddr {
    			break
    		}
    	}
    
    	if addr < eaddr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    // the elfMapping field is set. It populates the base and isData fields and
    // returns an error.
    func (f *file) computeBase(addr uint64) error {
    	if f == nil || f.m == nil {
    		return nil
    	}
    	if addr < f.m.start || addr >= f.m.limit {
    		return fmt.Errorf("specified address %x is outside the mapping range [%x, %x] for file %q", addr, f.m.start, f.m.limit, f.name)
    	}
    	ef, err := elfOpen(f.name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    	// Addr methods
    	test("Addr.IsZero", func() { sinkBool = MustParseAddr("1.2.3.4").IsZero() })
    	test("Addr.BitLen", func() { sinkBool = MustParseAddr("1.2.3.4").BitLen() == 8 })
    	test("Addr.Zone/4", func() { sinkBool = MustParseAddr("1.2.3.4").Zone() == "" })
    	test("Addr.Zone/6", func() { sinkBool = MustParseAddr("fe80::1").Zone() == "" })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    	ipX := "ip"
    	ipvX_addr := "ipv4_addr" //nolint:stylecheck // var name intentionally resembles value
    	noLocalhost := "ip daddr != 127.0.0.0/8"
    	if proxier.ipFamily == v1.IPv6Protocol {
    		ipX = "ip6"
    		ipvX_addr = "ipv6_addr"
    		noLocalhost = "ip6 daddr != ::1"
    	}
    
    	tx.Add(&knftables.Table{
    		Comment: ptr.To("rules for kube-proxy"),
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. src/crypto/tls/tls.go

    		defer cancel()
    	}
    
    	rawConn, err := netDialer.DialContext(ctx, network, addr)
    	if err != nil {
    		return nil, err
    	}
    
    	colonPos := strings.LastIndex(addr, ":")
    	if colonPos == -1 {
    		colonPos = len(addr)
    	}
    	hostname := addr[:colonPos]
    
    	if config == nil {
    		config = defaultConfig()
    	}
    	// If no ServerName is set, infer the ServerName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	// Declare variable to hold address.
    	sym := &types.Sym{Name: "&" + n.Sym().Name, Pkg: types.LocalPkg}
    	addr := s.curfn.NewLocal(pos, sym, types.NewPtr(n.Type()))
    	addr.SetUsed(true)
    	types.CalcSize(addr.Type())
    
    	if n.Class == ir.PPARAMOUT {
    		addr.SetIsOutputParamHeapAddr(true)
    	}
    
    	n.Heapaddr = addr
    	s.assign(addr, ptr, false, 0)
    }
    
    // newObject returns an SSA value denoting new(typ).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top