HomeSort by relevance Sort by last modified time
    Searched refs:IP (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/test/CodeGenCXX/
mangle-nullptr-arg.cpp 3 template<int *ip> struct IP {};
6 void test1(IP<nullptr>) {}
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 7 template<int *ip> struct IP { // expected-note 5 {{template parameter is declared here}}
8 IP<ip> *ip2;
11 template<int &ip> struct IR {};
21 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
22 IP<(0)> ip1; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
23 IP<nullptr> ip2;
24 IP<get_nullptr()> ip3;
25 IP<(int*)0> ip4
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
Instrumentation.cpp 23 /// Moves I before IP. Returns new insert point.
24 static BasicBlock::iterator moveBeforeInsertPoint(BasicBlock::iterator I, BasicBlock::iterator IP) {
25 // If I is IP, move the insert point down.
26 if (I == IP)
27 return ++IP;
28 // Otherwise, move I before IP and return IP.
29 I->moveBefore(&*IP);
30 return IP;
39 BasicBlock::iterator IP) {
    [all...]
  /external/avahi/tests/
fuzz-mdns.py 6 sendp(Ether(type=0x800, dst="ff:ff:ff:ff:ff:ff")/IP(dst="224.0.0.251")/fuzz(UDP(dport = 5353, sport = 5353)/DNS(qd = fuzz(DNSQR()))),loop=1, iface="realtek0")
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/lm32/
csr.s 15 rcsr r0, IP
16 rcsr r31, IP
csr.d 22 30: 90 40 00 00 rcsr r0,IP
23 34: 90 40 f8 00 rcsr ba,IP
  /external/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)
AssumptionCache.cpp 109 auto IP = AssumptionCaches.insert(std::make_pair(
111 assert(IP.second && "Scanning function already in the map?");
112 return *IP.first->second;
ScalarEvolutionExpander.cpp 34 /// ReuseOrCreateCast - Arrange for there to be a cast of V to Ty at IP,
40 BasicBlock::iterator IP) {
42 // point. It doesn't need to be the actual IP where the uses of the returned
43 // cast will be added, but it must dominate such IP.
59 // If the cast isn't where we want it, create a new cast at IP.
62 if (BasicBlock::iterator(CI) != IP || BIP == IP) {
66 Ret = CastInst::Create(Op, V, Ty, "", &*IP);
78 Ret = CastInst::Create(Op, V, Ty, V->getName(), &*IP);
80 // We assert at the end of the function since IP might point to a
    [all...]
  /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/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
SYN-DoS.rate.limit 14 IP=$IPROUTE/ip/ip
35 $TC filter add dev $INDEV parent ffff: protocol ip prio 50 handle 1 fw \
  /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...]
Disassembler.h 74 std::unique_ptr<llvm::MCInstPrinter> IP;
93 MCInstPrinter *iP) : TripleName(tripleName),
104 IP.reset(iP);
119 MCInstPrinter *getIP() { return IP.get(); }
120 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); }
  /external/autotest/server/site_tests/bluetooth_RegressionServer/
bluetooth_RegressionServer.py 24 error.TestError('Must provide client\'s IP address to test')
  /external/llvm/unittests/ADT/
SparseSetTest.cpp 46 std::pair<USet::iterator, bool> IP = Set.insert(5);
47 EXPECT_TRUE(IP.second);
48 EXPECT_TRUE(IP.first == Set.begin());
62 IP = Set.insert(5);
63 EXPECT_FALSE(IP.second);
64 EXPECT_TRUE(IP.first == Set.begin());
106 std::pair<USet::iterator, bool> IP = Set.insert(3);
107 EXPECT_FALSE(IP.second);
108 EXPECT_TRUE(IP.first == Set.begin() + 1);
  /external/chromium-libpac/test/js-unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /external/iproute2/testsuite/lib/
generic.sh 58 $IP $@ 2> $STD_ERR > $STD_OUT
63 ts_err "command: $IP $@"
  /external/llvm/include/llvm/Analysis/
IntervalIterator.h 59 inline Interval *getSourceGraphNode(IntervalPartition *IP, BasicBlock *BB) {
60 return IP->getBlockInterval(BB);
113 IntervalIterator(IntervalPartition &IP, bool OwnMemory) : IOwnMem(OwnMemory) {
114 OrigContainer = &IP;
115 if (!ProcessInterval(IP.getRootInterval())) {
258 intervals_begin(IntervalPartition &IP, bool DeleteIntervals = true) {
259 return interval_part_interval_iterator(IP, DeleteIntervals);
262 inline interval_part_interval_iterator intervals_end(IntervalPartition &IP) {
  /art/runtime/arch/arm/
registers_arm.h 45 IP = 12,
  /external/ppp/pppd/plugins/radius/etc/
dictionary 49 ATTRIBUTE NAS-IP-Address 4 ipaddr
53 ATTRIBUTE Framed-IP-Address 8 ipaddr
54 ATTRIBUTE Framed-IP-Netmask 9 ipaddr
59 ATTRIBUTE Login-IP-Host 14 ipaddr
102 ATTRIBUTE Add-Port-To-IP-Address 1037 integer
158 VALUE Framed-Compression Van-Jacobson-TCP-IP 1
235 VALUE Add-Port-To-IP-Address No 0
236 VALUE Add-Port-To-IP-Address Yes 1
dictionary.compat 17 VALUE Framed-Compression Van-Jacobsen-TCP-IP 1
18 VALUE Framed-Compression VJ-TCP-IP 1
  /external/llvm/lib/CodeGen/
ShadowStackGCLowering.cpp 398 BasicBlock::iterator IP = F.getEntryBlock().begin();
399 IRBuilder<> AtEntry(IP->getParent(), IP);
404 while (isa<AllocaInst>(IP))
405 ++IP;
406 AtEntry.SetInsertPoint(IP->getParent(), IP);
430 while (isa<StoreInst>(IP))
431 ++IP;
432 AtEntry.SetInsertPoint(IP->getParent(), IP)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.c 130 var->Inst->IP, reader->Inst->IP, src_type, new_index, new_writemask);
150 unsigned int start = var->Inst->IP;
155 unsigned int chan_end = var->Readers[i].Inst->IP;
167 if (var->Readers[i].Inst->IP < start) {
170 chan_start = bgnloop->IP;
200 if (bgnloop->IP < chan_start) {
201 chan_start = bgnloop->IP;
206 if (endloop->IP > chan_end) {
207 chan_end = endloop->IP;
    [all...]
  /external/autotest/client/site_tests/network_DhcpStaticIP/
network_DhcpStaticIP.py 12 """DHCP test which confirms static IP functionality"""
17 # We'll fill in the subnet and supply this as a static IP address.
28 CONFIGURE_STATIC_IP_ADDRESS = 'ip-address'
32 """Configures the Static IP parameters for the Ethernet interface
63 """Clears configuration of Static IP parameters for the Ethernet
92 raise error.TestFail('Saved IP address %s is not DHCP address %s' %
98 server that will successfully return an IP address to the client.
151 the IP information configured on client matches the parameters
168 the IP information configured on client matches the parameters
169 in |options|, except that the client's IP address should b
    [all...]

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 9