/third_party/curl/docs/cmdline-opts/ |
D | page-footer | 13 .IP "http_proxy [protocol://]<host>[:port]" 15 .IP "HTTPS_PROXY [protocol://]<host>[:port]" 17 .IP "[url-protocol]_PROXY [protocol://]<host>[:port]" 21 .IP "ALL_PROXY [protocol://]<host>[:port]" 23 .IP "NO_PROXY <comma-separated list of hosts/domains>" 37 The list of host names can also be include numerical IP addresses, and IPv6 40 IP addresses can be specified using CIDR notation: an appended slash and 44 .IP "APPDATA <dir>" 47 .IP "COLUMNS <terminal width>" 51 .IP "CURL_CA_BUNDLE <file>" [all …]
|
D | version.d | 25 .IP "alt-svc" 27 .IP "AsynchDNS" 30 .IP "brotli" 32 .IP "CharConv" 34 .IP "Debug" 37 .IP "gsasl" 40 .IP "GSS-API" 42 .IP "HSTS" 44 .IP "HTTP2" 46 .IP "HTTP3" [all …]
|
D | tls-max.d | 23 .IP "default" 25 .IP "1.0" 27 .IP "1.1" 29 .IP "1.2" 31 .IP "1.3" 34 .IP
|
D | ftp-port.d | 23 e.g. "eth0" to specify which interface's IP address you want to use (Unix only) 24 .IP "IP address" 25 e.g. "192.168.10.1" to specify the exact IP address 26 .IP "host name" 28 .IP "-" 29 make curl pick the same IP address that is already used for the control 32 .IP
|
D | data-urlencode.d | 23 .IP "content" 27 .IP "=content" 30 .IP "name=content" 33 .IP "@filename" 36 .IP "name@filename" 42 .IP
|
D | delegation.d | 16 .IP "none" 18 .IP "policy" 21 .IP "always" 24 .IP
|
D | ftp-method.d | 18 .IP multicwd 22 .IP nocwd 25 .IP singlecwd 30 .IP
|
D | haproxy-clientip.d | 4 Help: Sets client IP in HAProxy PROXY protocol v1 header 8 Example: --haproxy-clientip $IP 12 Sets a client IP in HAProxy PROXY protocol v1 header at the beginning of the 24 Otherwise, any string can be accepted for the client IP and get sent.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | Instrumentation.cpp | 25 static BasicBlock::iterator moveBeforeInsertPoint(BasicBlock::iterator I, BasicBlock::iterator IP) { in moveBeforeInsertPoint() argument 27 if (I == IP) { in moveBeforeInsertPoint() 28 ++IP; in moveBeforeInsertPoint() 31 I->moveBefore(&*IP); in moveBeforeInsertPoint() 33 return IP; in moveBeforeInsertPoint() 42 BasicBlock::iterator IP) { in PrepareToSplitEntryBlock() argument 44 for (auto I = IP, E = BB.end(); I != E; ++I) { in PrepareToSplitEntryBlock() 54 IP = moveBeforeInsertPoint(I, IP); in PrepareToSplitEntryBlock() 56 return IP; in PrepareToSplitEntryBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Frontend/OpenMP/ |
D | OMPIRBuilder.h | 117 : IP(IRB.saveIP()), DL(IRB.getCurrentDebugLocation()) {} in LocationDescription() 118 LocationDescription(const InsertPointTy &IP) : IP(IP) {} in LocationDescription() 119 LocationDescription(const InsertPointTy &IP, const DebugLoc &DL) in LocationDescription() 120 : IP(IP), DL(DL) {} in LocationDescription() 121 InsertPointTy IP; member 176 Builder.restoreIP(Loc.IP); in updateToLocation() 178 return Loc.IP.getBlock() != nullptr; in updateToLocation()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/ |
D | Disassembler.cpp | 98 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter( in LLVMCreateDisasmCPUFeatures() local 100 if (!IP) in LLVMCreateDisasmCPUFeatures() 106 std::move(DisAsm), std::move(IP)); in LLVMCreateDisasmCPUFeatures() 262 MCInstPrinter *IP = DC->getIP(); in LLVMDisasmInstruction() local 279 IP->printInst(&Inst, PC, AnnotationsStr, *DC->getSubtargetInfo(), in LLVMDisasmInstruction() 305 MCInstPrinter *IP = DC->getIP(); in LLVMSetDisasmOptions() local 306 IP->setUseMarkup(true); in LLVMSetDisasmOptions() 312 MCInstPrinter *IP = DC->getIP(); in LLVMSetDisasmOptions() local 313 IP->setPrintImmHex(true); in LLVMSetDisasmOptions() 325 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter( in LLVMSetDisasmOptions() local [all …]
|
D | Disassembler.h | 74 std::unique_ptr<llvm::MCInstPrinter> IP; variable 95 std::unique_ptr<MCInstPrinter> &&IP) in LLVMDisasmContext() argument 100 IP(std::move(IP)), Options(0), CommentStream(CommentsToEmit) {} in LLVMDisasmContext() 114 MCInstPrinter *getIP() { return IP.get(); } in getIP() 115 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); } in setIP()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 39 BasicBlock::iterator IP) { in ReuseOrCreateCast() argument 61 if (BasicBlock::iterator(CI) != IP || BIP == IP) { in ReuseOrCreateCast() 64 Ret = CastInst::Create(Op, V, Ty, "", &*IP); in ReuseOrCreateCast() 75 Ret = CastInst::Create(Op, V, Ty, V->getName(), &*IP); in ReuseOrCreateCast() 88 BasicBlock::iterator IP = ++I->getIterator(); in findInsertPointAfter() local 90 IP = II->getNormalDest()->begin(); in findInsertPointAfter() 92 while (isa<PHINode>(IP)) in findInsertPointAfter() 93 ++IP; in findInsertPointAfter() 95 if (isa<FuncletPadInst>(IP) || isa<LandingPadInst>(IP)) { in findInsertPointAfter() 96 ++IP; in findInsertPointAfter() [all …]
|
D | IntervalPartition.cpp | 98 IntervalPartition::IntervalPartition(IntervalPartition &IP, bool) in IntervalPartition() argument 100 assert(IP.getRootInterval() && "Cannot operate on empty IntervalPartitions!"); in IntervalPartition() 103 interval_part_interval_iterator I = intervals_begin(IP, false); in IntervalPartition() 104 assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!"); in IntervalPartition() 111 for (interval_part_interval_iterator E = intervals_end(IP); I != E; ++I) in IntervalPartition()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_variable.c | 132 unsigned int start = var->Inst->IP; in rc_variable_compute_live_intervals() 137 unsigned int chan_end = var->Readers[i].Inst->IP; in rc_variable_compute_live_intervals() 149 if (var->Readers[i].Inst->IP < start) { in rc_variable_compute_live_intervals() 152 chan_start = bgnloop->IP; in rc_variable_compute_live_intervals() 182 if (bgnloop->IP < chan_start) { in rc_variable_compute_live_intervals() 183 chan_start = bgnloop->IP; in rc_variable_compute_live_intervals() 188 if (endloop->IP > chan_end) { in rc_variable_compute_live_intervals() 189 chan_end = endloop->IP; in rc_variable_compute_live_intervals() 336 unsigned int min_ip_a = var_a->Inst->IP; in cmpfunc_variable_by_ip() 337 unsigned int min_ip_b = var_b->Inst->IP; in cmpfunc_variable_by_ip() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/ |
D | assembler_arm.cc | 388 mul(IP, rn, rm, cond); 389 sub(rd, ra, Operand(IP), cond); 417 ASSERT(rd_lo != IP); in umaal() 418 ASSERT(rd_hi != IP); in umaal() 419 ASSERT(rn != IP); in umaal() 420 ASSERT(rm != IP); in umaal() 425 mov(IP, Operand(0)); in umaal() 426 umlal(rd_lo, IP, rn, rm); in umaal() 428 adc(rd_hi, IP, Operand(0)); in umaal() 1491 Push(IP); in CheckCodePointer() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | IntervalIterator.h | 64 inline Interval *getSourceGraphNode(IntervalPartition *IP, BasicBlock *BB) { in getSourceGraphNode() argument 65 return IP->getBlockInterval(BB); in getSourceGraphNode() 114 IntervalIterator(IntervalPartition &IP, bool OwnMemory) : IOwnMem(OwnMemory) { in IntervalIterator() argument 115 OrigContainer = &IP; in IntervalIterator() 116 if (!ProcessInterval(IP.getRootInterval())) { in IntervalIterator() 257 intervals_begin(IntervalPartition &IP, bool DeleteIntervals = true) { 258 return interval_part_interval_iterator(IP, DeleteIntervals); 261 inline interval_part_interval_iterator intervals_end(IntervalPartition &IP) { in intervals_end() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ShadowStackGCLowering.cpp | 305 BasicBlock::iterator IP = F.getEntryBlock().begin(); in runOnFunction() local 306 IRBuilder<> AtEntry(IP->getParent(), IP); in runOnFunction() 311 while (isa<AllocaInst>(IP)) in runOnFunction() 312 ++IP; in runOnFunction() 313 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction() 338 while (isa<StoreInst>(IP)) in runOnFunction() 339 ++IP; in runOnFunction() 340 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCSection.cpp | 71 iterator IP; in getSubsectionInsertionPoint() local 73 IP = end(); in getSubsectionInsertionPoint() 75 IP = MI->second->getIterator(); in getSubsectionInsertionPoint() 81 getFragmentList().insert(IP, F); in getSubsectionInsertionPoint() 85 return IP; in getSubsectionInsertionPoint()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorizationPlanner.h | 87 void restoreIP(VPInsertPoint IP) { in restoreIP() argument 88 if (IP.isSet()) in restoreIP() 89 setInsertPoint(IP.getBlock(), IP.getPoint()); in restoreIP() 104 void setInsertPoint(VPBasicBlock *TheBB, VPBasicBlock::iterator IP) { in setInsertPoint() argument 106 InsertPt = IP; in setInsertPoint()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Frontend/OpenMP/ |
D | OMPIRBuilder.cpp | 157 !Function.empty() ? Function : Loc.IP.getBlock()->getParent()->getName(); in getOrCreateSrcLocStr() 176 return Loc.IP; in CreateBarrier() 231 return Loc.IP; in CreateCancel() 309 return Loc.IP; in CreateParallel() 373 auto FiniCBWrapper = [&](InsertPointTy IP) { in CreateParallel() argument 376 if (IP.getBlock()->end() == IP.getPoint()) { in CreateParallel() 378 Builder.restoreIP(IP); in CreateParallel() 380 IP = InsertPointTy(I->getParent(), I->getIterator()); in CreateParallel() 382 assert(IP.getBlock()->getTerminator()->getNumSuccessors() == 1 && in CreateParallel() 383 IP.getBlock()->getTerminator()->getSuccessor(0) == PRegExitBB && in CreateParallel() [all …]
|
/third_party/python/Doc/howto/ |
D | ipaddress.rst | 18 already familiar with IP networking terminology, but may also be useful 20 represents IP network addressing concepts. 26 Since :mod:`ipaddress` is a module for inspecting and manipulating IP addresses, 31 A Note on IP Versions 34 For readers that aren't particularly familiar with IP addressing, it's 35 important to know that the Internet Protocol (IP) is currently in the process 47 IP Host Addresses 51 when working with IP addressing. The simplest way to create addresses is 84 Host addresses are usually grouped together into IP networks, so 86 definitions. IP network objects are constructed from strings that define the [all …]
|
/third_party/lwip/ |
D | FEATURES | 1 lwIP is a small independent implementation of the TCP/IP protocol suite targeted at embedded system… 3 The focus of the lwIP TCP/IP implementation is to reduce resource usage while still having a full s… 6 - Protocols: IP, IPv6, ICMP, ND, MLD, UDP, TCP, IGMP, ARP, PPPoS, PPPoE, 6LowPAN (via IEEE 802.15.4… 9 - Extended features: IP forwarding over multiple network interfaces
|
/third_party/libcoap/man/ |
D | coap_session.txt.in | 90 is tracked by local port, CoAP protocol, remote IP address and remote port. 145 The *coap_session_get_addr_local*() function is used to get the local IP 151 multicast IP address and port information from the _session_ if the _session_ 152 was originally set up to send requests to a multicast IP. 157 IP address and port information from the _session_. If the _session_ was 158 originally set up to send requests to a multicast IP, then the returned IP 159 will be that of the unicast response from a peer. The returned IP will get 160 set back to the multicast IP when the next *coap_send*(3) is called. 235 a pointer to the IP address / port or NULL on error. 237 *coap_session_get_addr_mcast*() returns a pointer to the remote multicast IP
|
/third_party/python/Doc/library/ |
D | ipaddress.rst | 17 various tasks related to IP addresses, including checking whether or not two 19 subnet, checking whether or not a string represents a valid IP address or 38 IP addresses, networks and interfaces: 43 the IP address passed as argument. Either IPv4 or IPv6 addresses may be 57 the IP address passed as argument. *address* is a string or integer 58 representing the IP network. Either IPv4 or IPv6 networks may be supplied; 71 on the IP address passed as argument. *address* is a string or integer 72 representing the IP address. Either IPv4 or IPv6 addresses may be supplied; 85 IP Addresses 94 write code that handles both IP versions correctly. Address objects are [all …]
|