HomeSort by relevance Sort by last modified time
    Searched refs:IP (Results 26 - 50 of 595) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/lm32/
csr.s 15 rcsr r0, IP
16 rcsr r31, IP
  /prebuilts/go/darwin-x86/src/net/
iprawsock_test.go 26 {"ip", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
27 {"ip4", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
28 {"ip4:icmp", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
30 {"ip", "::1", &IPAddr{IP: ParseIP("::1")}, nil},
31 {"ip6", "::1", &IPAddr{IP: ParseIP("::1")}, nil},
32 {"ip6:ipv6-icmp", "::1", &IPAddr{IP: ParseIP("::1")}, nil},
33 {"ip6:IPv6-ICMP", "::1", &IPAddr{IP: ParseIP("::1")}, nil},
35 {"ip", "::1%en0", &IPAddr{IP: ParseIP("::1"), Zone: "en0"}, nil}
    [all...]
ip.go 5 // IP address manipulations
15 // IP address lengths (bytes).
21 // An IP is a single IP address, a slice of bytes.
26 // IP address as an IPv4 address or an IPv6 address
30 type IP []byte
32 // An IP mask is an IP address.
35 // An IPNet represents an IP network.
37 IP IP // network numbe
    [all...]
interface_solaris.go 87 var ip IP
91 ip = IPv4(a.IP[0], a.IP[1], a.IP[2], a.IP[3])
94 ip = make(IP, IPv6len)
95 copy(ip, a.IP[:]
    [all...]
main_test.go 75 {"tcp", "localhost:1", &TCPAddr{IP: IPv4(127, 0, 0, 1), Port: 1}, nil},
76 {"tcp4", "localhost:2", &TCPAddr{IP: IPv4(127, 0, 0, 1), Port: 2}, nil},
79 {"udp", "localhost:1", &UDPAddr{IP: IPv4(127, 0, 0, 1), Port: 1}, nil},
80 {"udp4", "localhost:2", &UDPAddr{IP: IPv4(127, 0, 0, 1), Port: 2}, nil},
83 {"ip", "localhost", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
84 {"ip4", "localhost", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
89 resolveTCPAddrTests = append(resolveTCPAddrTests, resolveTCPAddrTest{"tcp6", "localhost:3", &TCPAddr{IP: IPv6loopback, Port: 3}, nil})
90 resolveUDPAddrTests = append(resolveUDPAddrTests, resolveUDPAddrTest{"udp6", "localhost:3", &UDPAddr{IP: IPv6loopback, Port: 3}, nil})
91 resolveIPAddrTests = append(resolveIPAddrTests, resolveIPAddrTest{"ip6", "localhost", &IPAddr{IP: IPv6loopback}, nil}
    [all...]
interface_windows.go 14 // supportsVistaIP reports whether the platform implements new IP
33 // adapterAddresses returns a list of IP adapter and address
34 // structures. The structure contains an IP adapter and flattened
35 // multiple IP addresses including unicast, anycast and multicast
151 l = addrPrefixLen(pfx4, IP(sa.Addr[:]))
153 ifat = append(ifat, &IPNet{IP: IPv4(sa.Addr[0], sa.Addr[1], sa.Addr[2], sa.Addr[3]), Mask: CIDRMask(l, 8*IPv4len)})
158 l = addrPrefixLen(pfx6, IP(sa.Addr[:]))
160 ifa := &IPNet{IP: make(IP, IPv6len), Mask: CIDRMask(l, 8*IPv6len)}
161 copy(ifa.IP, sa.Addr[:]
    [all...]
sockopt_posix.go 22 func ipv4AddrToInterface(ip IP) (*Interface, error) {
35 if ip.Equal(v.IP) {
39 if ip.Equal(v.IP) {
45 if ip.Equal(IPv4zero) {
51 func interfaceToIPv4Addr(ifi *Interface) (IP, error) {
62 if v.IP.To4() != nil {
63 return v.IP, ni
    [all...]
udpsock_posix.go 17 return &UDPAddr{IP: sa.Addr[0:], Port: sa.Port}
19 return &UDPAddr{IP: sa.Addr[0:], Port: sa.Port, Zone: zoneToString(int(sa.ZoneId))}
25 if a == nil || len(a.IP) <= IPv4len {
28 if a.IP.To4() != nil {
38 return ipToSockaddr(family, a.IP, a.Port, a.Zone)
50 addr = &UDPAddr{IP: sa.Addr[0:], Port: sa.Port}
52 addr = &UDPAddr{IP: sa.Addr[0:], Port: sa.Port, Zone: zoneToString(int(sa.ZoneId))}
62 addr = &UDPAddr{IP: sa.Addr[0:], Port: sa.Port}
64 addr = &UDPAddr{IP: sa.Addr[0:], Port: sa.Port, Zone: zoneToString(int(sa.ZoneId))}
119 if ip4 := gaddr.IP.To4(); ip4 != nil
    [all...]
  /prebuilts/go/linux-x86/src/net/
iprawsock_test.go 26 {"ip", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
27 {"ip4", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
28 {"ip4:icmp", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
30 {"ip", "::1", &IPAddr{IP: ParseIP("::1")}, nil},
31 {"ip6", "::1", &IPAddr{IP: ParseIP("::1")}, nil},
32 {"ip6:ipv6-icmp", "::1", &IPAddr{IP: ParseIP("::1")}, nil},
33 {"ip6:IPv6-ICMP", "::1", &IPAddr{IP: ParseIP("::1")}, nil},
35 {"ip", "::1%en0", &IPAddr{IP: ParseIP("::1"), Zone: "en0"}, nil}
    [all...]
ip.go 5 // IP address manipulations
15 // IP address lengths (bytes).
21 // An IP is a single IP address, a slice of bytes.
26 // IP address as an IPv4 address or an IPv6 address
30 type IP []byte
32 // An IP mask is an IP address.
35 // An IPNet represents an IP network.
37 IP IP // network numbe
    [all...]
interface_solaris.go 87 var ip IP
91 ip = IPv4(a.IP[0], a.IP[1], a.IP[2], a.IP[3])
94 ip = make(IP, IPv6len)
95 copy(ip, a.IP[:]
    [all...]
main_test.go 75 {"tcp", "localhost:1", &TCPAddr{IP: IPv4(127, 0, 0, 1), Port: 1}, nil},
76 {"tcp4", "localhost:2", &TCPAddr{IP: IPv4(127, 0, 0, 1), Port: 2}, nil},
79 {"udp", "localhost:1", &UDPAddr{IP: IPv4(127, 0, 0, 1), Port: 1}, nil},
80 {"udp4", "localhost:2", &UDPAddr{IP: IPv4(127, 0, 0, 1), Port: 2}, nil},
83 {"ip", "localhost", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
84 {"ip4", "localhost", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
89 resolveTCPAddrTests = append(resolveTCPAddrTests, resolveTCPAddrTest{"tcp6", "localhost:3", &TCPAddr{IP: IPv6loopback, Port: 3}, nil})
90 resolveUDPAddrTests = append(resolveUDPAddrTests, resolveUDPAddrTest{"udp6", "localhost:3", &UDPAddr{IP: IPv6loopback, Port: 3}, nil})
91 resolveIPAddrTests = append(resolveIPAddrTests, resolveIPAddrTest{"ip6", "localhost", &IPAddr{IP: IPv6loopback}, nil}
    [all...]
interface_windows.go 14 // supportsVistaIP reports whether the platform implements new IP
33 // adapterAddresses returns a list of IP adapter and address
34 // structures. The structure contains an IP adapter and flattened
35 // multiple IP addresses including unicast, anycast and multicast
151 l = addrPrefixLen(pfx4, IP(sa.Addr[:]))
153 ifat = append(ifat, &IPNet{IP: IPv4(sa.Addr[0], sa.Addr[1], sa.Addr[2], sa.Addr[3]), Mask: CIDRMask(l, 8*IPv4len)})
158 l = addrPrefixLen(pfx6, IP(sa.Addr[:]))
160 ifa := &IPNet{IP: make(IP, IPv6len), Mask: CIDRMask(l, 8*IPv6len)}
161 copy(ifa.IP, sa.Addr[:]
    [all...]
sockopt_posix.go 22 func ipv4AddrToInterface(ip IP) (*Interface, error) {
35 if ip.Equal(v.IP) {
39 if ip.Equal(v.IP) {
45 if ip.Equal(IPv4zero) {
51 func interfaceToIPv4Addr(ifi *Interface) (IP, error) {
62 if v.IP.To4() != nil {
63 return v.IP, ni
    [all...]
  /external/llvm/lib/Analysis/
IntervalPartition.cpp 92 IntervalPartition::IntervalPartition(IntervalPartition &IP, bool)
94 assert(IP.getRootInterval() && "Cannot operate on empty IntervalPartitions!");
97 interval_part_interval_iterator I = intervals_begin(IP, false);
98 assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!");
105 for (interval_part_interval_iterator E = intervals_end(IP); I != E; ++I)
  /external/llvm/lib/MC/
MCSection.cpp 71 iterator IP;
73 IP = end();
75 IP = MI->second->getIterator();
81 getFragmentList().insert(IP, F);
85 return IP;
  /external/swiftshader/third_party/LLVM/lib/Analysis/
IntervalPartition.cpp 93 IntervalPartition::IntervalPartition(IntervalPartition &IP, bool)
95 assert(IP.getRootInterval() && "Cannot operate on empty IntervalPartitions!");
98 interval_part_interval_iterator I = intervals_begin(IP, false);
99 assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!");
106 for (interval_part_interval_iterator E = intervals_end(IP); I != E; ++I)
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Mcast_ip_to_mac.c 2 Implementation of converting an multicast IP address to multicast HW MAC
19 Call undi to convert an multicast IP address to a MAC address.
23 @param IP Multicast IP address.
26 @retval EFI_SUCCESS The multicast IP address was mapped to the
37 IN EFI_IP_ADDRESS *IP,
59 CopyMem (&Cpb->IP, IP, sizeof (PXE_IP_ADDR));
105 Converts a multicast IP address to a multicast HW MAC address.
107 This function converts a multicast IP address to a multicast HW MAC address
    [all...]
  /external/curl/docs/cmdline-opts/
delegation.d 9 .IP "none"
11 .IP "policy"
14 .IP "always"
ftp-port.d 11 to setup an IP address and port for it to connect to. <address> should be one
14 .IP interface
15 i.e "eth0" to specify which interface's IP address you want to use (Unix only)
16 .IP "IP address"
17 i.e "192.168.10.1" to specify the exact IP address
18 .IP "host name"
20 .IP "-"
21 make curl pick the same IP address that is already used for the control
  /external/iproute2/examples/
gaiconf 9 IP=ip
31 run ${IP} -6 addrlabel flush
34 run ${IP} -6 addrlabel add prefix $prefix label $label
41 ${IP} -6 addrlabel list | while read p pfx l lbl; do
  /prebuilts/go/darwin-x86/test/
escape_slice.go 123 func IPv4(a, b, c, d byte) IP {
124 p := make(IP, IPv6len) // ERROR "make\(IP, IPv6len\) escapes to heap"
133 type IP []byte
136 IP IP
148 {"ip", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
149 {"ip4", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
150 {"ip4:icmp", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil}
    [all...]
  /prebuilts/go/linux-x86/test/
escape_slice.go 123 func IPv4(a, b, c, d byte) IP {
124 p := make(IP, IPv6len) // ERROR "make\(IP, IPv6len\) escapes to heap"
133 type IP []byte
136 IP IP
148 {"ip", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
149 {"ip4", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
150 {"ip4:icmp", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil}
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
Disassembler.h 69 llvm::OwningPtr<llvm::MCInstPrinter> IP;
82 MCInstPrinter *iP) : TripleName(tripleName),
90 IP.reset(iP);
94 MCInstPrinter *getIP() { return IP.get(); }
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 85 MCInstPrinter *IP = TheTarget->createMCInstPrinter(
87 if (!IP)
92 TheTarget, MAI, MRI, STI, MII, Ctx, DisAsm, IP);
249 MCInstPrinter *IP = DC->getIP();
267 IP->printInst(&Inst, FormattedOS, AnnotationsStr, *DC->getSubtargetInfo());
292 MCInstPrinter *IP = DC->getIP();
293 IP->setUseMarkup(1);
299 MCInstPrinter *IP = DC->getIP();
300 IP->setPrintImmHex(1);
312 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter
    [all...]

Completed in 907 milliseconds

12 3 4 5 6 7 8 91011>>