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

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/darwin-x86/src/cmd/fix/
netipv6zone.go 50 Key: ast.NewIdent("IP"),
  /prebuilts/go/darwin-x86/src/net/
interface_plan9.go 158 return nil, errors.New("cannot parse IP address for interface: " + status)
164 return nil, errors.New("cannot parse IP address for interface: " + status)
167 ip := ParseIP(addr)
168 if ip == nil {
169 return nil, errors.New("cannot parse IP address for interface: " + status)
181 if ip.To4() != nil { // IPv4 or IPv6 IPv4-mapped address
184 if ip.To16() != nil && ip.To4() == nil { // IPv6 address
188 addrs[i] = &IPNet{IP: ip, Mask: mask
    [all...]
udpsock.go 23 IP IP
35 ip := ipEmptyString(a.IP)
37 return JoinHostPort(ip+"%"+a.Zone, itoa(a.Port))
39 return JoinHostPort(ip, itoa(a.Port))
43 if a == nil || a.IP == nil {
46 return a.IP.IsUnspecified()
64 // one of its IP addresses.
246 if gaddr == nil || gaddr.IP == nil
    [all...]
sock_posix.go 15 // A sockaddr represents a TCP, UDP, IP or Unix network endpoint
190 if addr.IP != nil && addr.IP.IsMulticast() {
197 addr.IP = IPv4zero
199 addr.IP = IPv6unspecified
dial.go 25 // When dialing a name with multiple IP addresses, the timeout
143 case "ip", "ip4", "ip6":
152 case "ip", "ip4", "ip6":
195 ip *IPAddr
206 ip = hint
207 wildcard = ip.isWildcard()
216 if !wildcard && !addr.isWildcard() && !addr.IP.matchAddrFamily(tcp.IP) {
221 if !wildcard && !addr.isWildcard() && !addr.IP.matchAddrFamily(udp.IP) {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/fix/
netipv6zone.go 50 Key: ast.NewIdent("IP"),
  /prebuilts/go/linux-x86/src/net/
interface_plan9.go 158 return nil, errors.New("cannot parse IP address for interface: " + status)
164 return nil, errors.New("cannot parse IP address for interface: " + status)
167 ip := ParseIP(addr)
168 if ip == nil {
169 return nil, errors.New("cannot parse IP address for interface: " + status)
181 if ip.To4() != nil { // IPv4 or IPv6 IPv4-mapped address
184 if ip.To16() != nil && ip.To4() == nil { // IPv6 address
188 addrs[i] = &IPNet{IP: ip, Mask: mask
    [all...]
udpsock.go 23 IP IP
35 ip := ipEmptyString(a.IP)
37 return JoinHostPort(ip+"%"+a.Zone, itoa(a.Port))
39 return JoinHostPort(ip, itoa(a.Port))
43 if a == nil || a.IP == nil {
46 return a.IP.IsUnspecified()
64 // one of its IP addresses.
246 if gaddr == nil || gaddr.IP == nil
    [all...]
sock_posix.go 15 // A sockaddr represents a TCP, UDP, IP or Unix network endpoint
190 if addr.IP != nil && addr.IP.IsMulticast() {
197 addr.IP = IPv4zero
199 addr.IP = IPv6unspecified
  /device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/
core_cm0.h 320 __IO uint32_t IP[8]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register */
617 NVIC->IP[_IP_IDX(IRQn)] = (NVIC->IP[_IP_IDX(IRQn)] & ~(0xFF << _BIT_SHIFT(IRQn))) |
639 return((uint32_t)(((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & 0xFF) >> (8 - __NVIC_PRIO_BITS))); } /* get priority for device specific interrupts */
    [all...]
  /external/iproute2/testsuite/
Makefile 58 TC="$$i/tc/tc" IP="$$i/ip/ip" DEV="$(DEV)" IPVER="$@" SNAME="$$i" \
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
address_test.go 68 return fmt.Sprintf("(%s %s %d)", addrFamily(a.Family()), ipAddr(a.IP[:]), a.PrefixLen)
72 return fmt.Sprintf("(%s %s %d %d)", addrFamily(a.Family()), ipAddr(a.IP[:]), a.PrefixLen, a.ZoneID)
link.go 19 Name string // name, equivalent to IP interface name
20 Index int // index, equivalent to IP interface index
23 MTU int // maximum transmission unit, basically link MTU but may differ between IP address families
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
address_test.go 68 return fmt.Sprintf("(%s %s %d)", addrFamily(a.Family()), ipAddr(a.IP[:]), a.PrefixLen)
72 return fmt.Sprintf("(%s %s %d %d)", addrFamily(a.Family()), ipAddr(a.IP[:]), a.PrefixLen, a.ZoneID)
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Orc/
IndirectionUtils.cpp 85 auto IP = new GlobalVariable(M, &PT, false, GlobalValue::ExternalLinkage,
88 IP->setVisibility(GlobalValue::HiddenVisibility);
89 return IP;
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
Disassembler.cpp 169 OwningPtr<MCInstPrinter> IP(T.createMCInstPrinter(AsmPrinterVariant,
171 if (!IP) {
188 ErrorOccurred |= PrintInsts(*DisAsm, *IP, ByteArray, SM, Out);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
VirtRegMap.cpp 186 MI2VirtMapTy::iterator IP = MI2VirtMap.lower_bound(NewMI);
189 MI2VirtMap.insert(IP, std::make_pair(NewMI, I->second));
194 MI2VirtMap.insert(IP, std::make_pair(NewMI, std::make_pair(VirtReg, MRInfo)));
198 MI2VirtMapTy::iterator IP = MI2VirtMap.lower_bound(MI);
199 MI2VirtMap.insert(IP, std::make_pair(MI, std::make_pair(VirtReg, MRInfo)));
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 165 /// instruction IP.
166 static Value *LowerBSWAP(LLVMContext &Context, Value *V, Instruction *IP) {
171 IRBuilder<> Builder(IP);
261 /// instruction IP.
262 static Value *LowerCTPOP(LLVMContext &Context, Value *V, Instruction *IP) {
271 IRBuilder<> Builder(IP);
301 /// instruction IP.
302 static Value *LowerCTLZ(LLVMContext &Context, Value *V, Instruction *IP) {
304 IRBuilder<> Builder(IP);
314 return LowerCTPOP(Context, V, IP);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
SanitizerCoverage.cpp 524 BasicBlock::iterator IP = BB.getFirstInsertionPt();
534 IP = PrepareToSplitEntryBlock(BB, IP);
536 EntryLoc = IP->getDebugLoc();
539 IRBuilder<> IRB(&*IP);
561 Cmp, &*IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
570 IRB.SetInsertPoint(&*IP);
  /external/iproute2/doc/
ip-cref.tex 2 \def\TITLE{IP Command Reference}
5 \Large\bf IP Command Reference.
24 This document presents a comprehensive description of the \verb|ip| utility
30 and examples to understand and configure Linux-2.2 IP and IPv6
33 This document is split into sections explaining \verb|ip| commands
34 and options, decrypting \verb|ip| output and containing a few examples.
41 \section{{\tt ip} --- command syntax}
43 The generic form of an \verb|ip| command is:
45 ip [ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]]
48 general behaviour of the \verb|ip| utility or changing its output. All option
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMConstantIslandPass.cpp 714 water_iterator IP =
717 WaterList.insert(IP, NewBB);
780 water_iterator IP =
783 MachineBasicBlock* WaterBB = *IP;
785 WaterList.insert(llvm::next(IP), NewBB);
787 WaterList.insert(IP, OrigBB);
    [all...]
  /external/iproute2/examples/
cbq.init-v0.7.3 36 # - replace hardcoded ip/tc location with variables
105 # - optional tc & ip command logging (into /var/run/cbq-*)
152 # of Linux kernel is provided by "ip" and "tc" utilities from A. Kuznetsov's
153 # iproute2 package, available at ftp://ftp.inr.ac.ru/ip-routing. Because the
162 # face "ip" and "tc" interface.
372 # realms, see Alexey Kuznetsov's IP Command Reference. This script
477 IP=/sbin/ip
514 ip link show| sed -n "/^[0-9]/ \
648 ### Check for presence of ip-route2 in usual plac
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 493 MCInstPrinter *IP = nullptr;
495 IP = TheTarget->createMCInstPrinter(Triple(TripleName), OutputAsmVariant,
499 IP->setPrintImmHex(PrintImmHex);
511 /*useDwarfDirectory*/ true, IP, CE, MAB, ShowInst));
547 assert(IP && "Expected assembly output");
548 IP->setUseMarkup(1);

Completed in 1331 milliseconds

1 2 3 4 5 6 78 91011>>