/external/swiftshader/third_party/LLVM/lib/Target/PTX/ |
PTXMCAsmStreamer.cpp | 538 MCInstPrinter *IP, 542 IP, CE, ShowInst);
|
/external/swiftshader/third_party/LLVM/tools/llvm-mc/ |
llvm-mc.cpp | 401 MCInstPrinter *IP = 411 /*useCFI*/ true, IP, CE, MAB,
|
/prebuilts/go/darwin-x86/src/net/http/cookiejar/ |
jar.go | 37 // TODO: specify which of the caller and callee is responsible for IP 353 // isIP reports whether host is an IP address. 424 errNoHostname = errors.New("cookiejar: no host name available (IP only)") 442 // an IP address.
|
/prebuilts/go/darwin-x86/src/net/ |
mockserver_test.go | 61 {"tcp4", TCPAddr{IP: IPv4(127, 0, 0, 1)}}, 62 {"tcp6", TCPAddr{IP: IPv6loopback}}, 361 {"udp4", UDPAddr{IP: IPv4(127, 0, 0, 1)}}, 362 {"udp6", UDPAddr{IP: IPv6loopback}},
|
dnsclient.go | 12 // reverseaddr returns the in-addr.arpa. or ip6.arpa. hostname of the IP 14 // to parse the IP address. 16 ip := ParseIP(addr) 17 if ip == nil { 20 if ip.To4() != nil { 21 return uitoa(uint(ip[15])) + "." + uitoa(uint(ip[14])) + "." + uitoa(uint(ip[13])) + "." + uitoa(uint(ip[12])) + ".in-addr.arpa.", nil 24 buf := make([]byte, 0, len(ip)*4+len("ip6.arpa.") [all...] |
/prebuilts/go/linux-x86/src/net/http/cookiejar/ |
jar.go | 37 // TODO: specify which of the caller and callee is responsible for IP 353 // isIP reports whether host is an IP address. 424 errNoHostname = errors.New("cookiejar: no host name available (IP only)") 442 // an IP address.
|
/prebuilts/go/linux-x86/src/net/ |
mockserver_test.go | 61 {"tcp4", TCPAddr{IP: IPv4(127, 0, 0, 1)}}, 62 {"tcp6", TCPAddr{IP: IPv6loopback}}, 361 {"udp4", UDPAddr{IP: IPv4(127, 0, 0, 1)}}, 362 {"udp6", UDPAddr{IP: IPv6loopback}},
|
dnsclient.go | 12 // reverseaddr returns the in-addr.arpa. or ip6.arpa. hostname of the IP 14 // to parse the IP address. 16 ip := ParseIP(addr) 17 if ip == nil { 20 if ip.To4() != nil { 21 return uitoa(uint(ip[15])) + "." + uitoa(uint(ip[14])) + "." + uitoa(uint(ip[13])) + "." + uitoa(uint(ip[12])) + ".in-addr.arpa.", nil 24 buf := make([]byte, 0, len(ip)*4+len("ip6.arpa.") [all...] |
/external/llvm/lib/Analysis/ |
ScalarEvolution.cpp | 313 void *IP = nullptr; 314 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S; 316 UniqueSCEVs.InsertNode(S, IP); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/SimpleNetwork/ |
SimpleNetwork.h | 413 IN EFI_IP_ADDRESS * IP,
419 Converts a multicast IP address to a multicast HW MAC address.
423 IPv6 - Set to TRUE if the multicast IP address is IPv6 [RFC 2460]. Set
424 to FALSE if the multicast IP address is IPv4 [RFC 791].
425 IP - The multicast IP address that is to be converted to a multicast
427 MAC - The multicast HW MAC address that is to be generated from IP.
430 EFI_SUCCESS - The multicast IP address was mapped to the multicast
|
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/ |
LinuxPacketFilter.c | 315 Converts a multicast IP address to a multicast HW MAC address.
318 @param IPv6 Set to TRUE if the multicast IP address is IPv6 [RFC 2460]. Set
319 to FALSE if the multicast IP address is IPv4 [RFC 791].
320 @param IP The multicast IP address that is to be converted to a multicast
322 @param MAC The multicast HW MAC address that is to be generated from IP.
324 @retval EFI_SUCCESS The multicast IP address was mapped to the multicast
339 IN EFI_IP_ADDRESS *IP,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/ |
Snp.h | 470 Receive filters, the station address, the statistics, and the multicast-IP-to-HW
721 Converts a multicast IP address to a multicast HW MAC address.
723 This function converts a multicast IP address to a multicast HW MAC address
728 @param IPv6 Set to TRUE if the multicast IP address is IPv6 [RFC 2460].
729 Set to FALSE if the multicast IP address is IPv4 [RFC 791].
730 @param IP The multicast IP address that is to be converted to a multicast
732 @param MAC The multicast HW MAC address that is to be generated from IP.
734 @retval EFI_SUCCESS The multicast IP address was mapped to the
738 @retval EFI_INVALID_PARAMETER IP is NULL. [all...] |
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
SimpleNetwork.h | 436 Converts a multicast IP address to a multicast HW MAC address.
439 @param IPv6 Set to TRUE if the multicast IP address is IPv6 [RFC 2460]. Set
440 to FALSE if the multicast IP address is IPv4 [RFC 791].
441 @param IP The multicast IP address that is to be converted to a multicast
443 @param MAC The multicast HW MAC address that is to be generated from IP.
445 @retval EFI_SUCCESS The multicast IP address was mapped to the multicast
461 IN EFI_IP_ADDRESS *IP,
|
/external/autotest/client/deps/lansim/src/py/ |
host.py | 46 "arp.pln": 4, # Protocol Addres Length is 4 (IP v4). 98 This is useful to send IP packets with send_ip() to hosts that haven't 108 """Resolves the hw_addr of an IP address locally when it is known. 114 @param ip_addr: The IP address to resolve encoded in network format. 120 # An IP host group address is mapped to an Ethernet multicast address 121 # by placing the low-order 23-bits of the IP address into the low-order 123 # Because there are 28 significant bits in an IP host group address, 127 if int_ip_addr & 0xF0000000 == 0xE0000000: # Multicast IP address 133 raise SimpleHostError("Unknown destination IP host.") 137 """Sends an IP packet [all...] |
/external/llvm/include/llvm/Analysis/ |
ScalarEvolutionExpander.h | 293 /// \brief Arrange for there to be a cast of V to Ty at IP, reusing an 299 BasicBlock::iterator IP);
|
/external/mesa3d/docs/specs/ |
MESA_texture_signed_rgba.spec | 17 IP Status 19 No known IP issues
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
DeadArgumentElimination.cpp | [all...] |
/external/syslinux/efi32/include/efi/ |
efinet.h | 258 IN EFI_IP_ADDRESS *IP,
|
/external/syslinux/efi64/include/efi/ |
efinet.h | 258 IN EFI_IP_ADDRESS *IP,
|
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ |
efinet.h | 258 IN EFI_IP_ADDRESS *IP,
|
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/ |
dpath.c | 678 IPv4_DEVICE_PATH *IP; 680 IP = DevPath; 690 IPv6_DEVICE_PATH *IP; 692 IP = DevPath; 693 CatPrint(Str, L"IP-v6(not-done)");
|
/external/syslinux/gpxe/src/include/gpxe/efi/Protocol/ |
SimpleNetwork.h | 367 Converts a multicast IP address to a multicast HW MAC address. 370 @param IPv6 Set to TRUE if the multicast IP address is IPv6 [RFC 2460]. Set 371 to FALSE if the multicast IP address is IPv4 [RFC 791]. 372 @param IP The multicast IP address that is to be converted to a multicast 374 @param MAC The multicast HW MAC address that is to be generated from IP. 376 @retval EFI_SUCCESS The multicast IP address was mapped to the multicast 392 IN EFI_IP_ADDRESS *IP,
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/ |
route_test.go | 239 return fmt.Sprintf("(%v %v)", addrFamily(a.Family()), ipAddr(a.IP[:])) 243 return fmt.Sprintf("(%v %v %d)", addrFamily(a.Family()), ipAddr(a.IP[:]), a.ZoneID)
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/ |
route_test.go | 239 return fmt.Sprintf("(%v %v)", addrFamily(a.Family()), ipAddr(a.IP[:])) 243 return fmt.Sprintf("(%v %v %d)", addrFamily(a.Family()), ipAddr(a.IP[:]), a.ZoneID)
|
/external/swiftshader/third_party/LLVM/lib/TableGen/ |
Record.cpp | 479 void *IP = 0; 480 if (BitsInit *I = ThePool.FindNodeOrInsertPos(ID, IP)) 484 ThePool.InsertNode(I, IP); 608 void *IP = 0; 609 if (ListInit *I = ThePool.FindNodeOrInsertPos(ID, IP)) 613 ThePool.InsertNode(I, IP); [all...] |