Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 125 for opAddr (0.12 sec)

  1. src/cmd/compile/internal/ssa/sccp.go

    		// bit
    		OpCtz8, OpCtz16, OpCtz32, OpCtz64,
    		// mask
    		OpSlicemask,
    		// safety check
    		OpIsNonNil,
    		// not
    		OpNot:
    		return true
    	case
    		// add
    		OpAdd64, OpAdd32, OpAdd16, OpAdd8,
    		OpAdd32F, OpAdd64F,
    		// sub
    		OpSub64, OpSub32, OpSub16, OpSub8,
    		OpSub32F, OpSub64F,
    		// mul
    		OpMul64, OpMul32, OpMul16, OpMul8,
    		OpMul32F, OpMul64F,
    		// div
    		OpDiv32F, OpDiv64F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite386.go

    		return true
    	case OpAdd32withcarry:
    		v.Op = Op386ADCL
    		return true
    	case OpAdd64F:
    		v.Op = Op386ADDSD
    		return true
    	case OpAdd8:
    		v.Op = Op386ADDL
    		return true
    	case OpAddPtr:
    		v.Op = Op386ADDL
    		return true
    	case OpAddr:
    		return rewriteValue386_OpAddr(v)
    	case OpAnd16:
    		v.Op = Op386ANDL
    		return true
    	case OpAnd32:
    		v.Op = Op386ANDL
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/nettest/nettest.go

    func hasRoutableIP(network string, ifi *net.Interface) (net.IP, bool) {
    	ifat, err := ifi.Addrs()
    	if err != nil {
    		return nil, false
    	}
    	for _, ifa := range ifat {
    		switch ifa := ifa.(type) {
    		case *net.IPAddr:
    			if ip, ok := routableIP(network, ifa.IP); ok {
    				return ip, true
    			}
    		case *net.IPNet:
    			if ip, ok := routableIP(network, ifa.IP); ok {
    				return ip, true
    			}
    		}
    	}
    	return nil, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/closure.go

    // initialize the given closure's free variables. These correspond
    // one-to-one with the variables in clo.Func.ClosureVars, and will be
    // either an ONAME node (if the variable is captured by value) or an
    // OADDR-of-ONAME node (if not).
    func closureArgs(clo *ir.ClosureExpr) []ir.Node {
    	fn := clo.Func
    
    	args := make([]ir.Node, len(fn.ClosureVars))
    	for i, v := range fn.ClosureVars {
    		var outer ir.Node
    		outer = v.Outer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    	e.Off -= uint64(frag)
    	e.Vaddr -= uint64(frag)
    	e.Paddr -= uint64(frag)
    	e.Filesz += uint64(frag)
    	e.Memsz += uint64(frag)
    }
    
    func elf64phdr(out *OutBuf, e *ElfPhdr) {
    	if e.Type == elf.PT_LOAD {
    		fixElfPhdr(e)
    	}
    
    	out.Write32(uint32(e.Type))
    	out.Write32(uint32(e.Flags))
    	out.Write64(e.Off)
    	out.Write64(e.Vaddr)
    	out.Write64(e.Paddr)
    	out.Write64(e.Filesz)
    	out.Write64(e.Memsz)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/net/dial_test.go

    			}
    			wg.Wait()
    		})
    	}
    }
    
    func lookupSlowFast(ctx context.Context, fn func(context.Context, string, string) ([]IPAddr, error), network, host string) ([]IPAddr, error) {
    	switch host {
    	case "slow6loopback4":
    		// Returns a slow IPv6 address, and a local IPv4 address.
    		return []IPAddr{
    			{IP: ParseIP(slowDst6)},
    			{IP: ParseIP("127.0.0.1")},
    		}, nil
    	default:
    		return fn(ctx, network, host)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		}
    	}
    	return allErrs
    }
    
    // ValidateIPFromString validates ip address
    func ValidateIPFromString(ipaddr string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if netutils.ParseIPSloppy(ipaddr) == nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, ipaddr, "ip address is not valid"))
    	}
    	return allErrs
    }
    
    // ValidatePort validates port numbers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/debug/elf/file.go

    				Off:    uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Off):])),
    				Vaddr:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Vaddr):])),
    				Paddr:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Paddr):])),
    				Filesz: uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Filesz):])),
    				Memsz:  uint64(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Memsz):])),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. cmd/net.go

    		if runtime.GOOS == "windows" && interf.Flags&net.FlagUp == 0 {
    			continue
    		}
    
    		for _, addr := range addrs {
    			var ip net.IP
    			switch v := addr.(type) {
    			case *net.IPNet:
    				ip = v.IP
    			case *net.IPAddr:
    				ip = v.IP
    			}
    
    			ipList = append(ipList, ip)
    		}
    	}
    
    	return ipList
    }
    
    // mustGetLocalIP4 returns IPv4 addresses of localhost.  It panics on error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. internal/http/listener_test.go

    		t.Fatalf("%s.  Unable to get IP addresses of this host.", err)
    	}
    
    	for _, addr := range addrs {
    		var ip net.IP
    		switch v := addr.(type) {
    		case *net.IPNet:
    			ip = v.IP
    		case *net.IPAddr:
    			ip = v.IP
    		}
    
    		if ip.To4() != nil {
    			localIP4.Add(ip.String())
    		}
    	}
    
    	// Filter ipList by IPs those do not start with '127.'.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top