Searched refs:IP (Results 1 - 25 of 86) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Dmangle-nullptr-arg.cpp3 template<int *ip> struct IP {}; struct
6 void test1(IP<nullptr>) {}
/external/chromium/net/tools/flip_server/
H A Dconstants.h25 #define IPV4_PRINTABLE_FORMAT(IP) (((IP)>>0)&0xff), (((IP)>>8)&0xff), \
26 (((IP)>>16)&0xff), (((IP)>>24)&0xff)
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1-11.cpp7 template<int *ip> struct IP { // expected-note 4 {{template parameter is declared here}} struct
8 IP<ip> *ip2;
17 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
18 IP<(0)> ip1; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
19 IP<nullptr> ip2;
20 IP<get_nullptr()> ip3;
21 IP<(int*)0> ip4;
22 IP<np> ip5;
23 IP<nonconst_np> ip5; // expected-error{{non-type template argument of type 'std::nullptr_t' (aka 'nullptr_t') is not a constant expression}} \
25 IP<(floa
[all...]
/external/llvm/lib/Analysis/
H A DIntervalPartition.cpp93 IntervalPartition::IntervalPartition(IntervalPartition &IP, bool) argument
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)
H A DScalarEvolutionExpander.cpp27 /// ReuseOrCreateCast - Arrange for there to be a cast of V to Ty at IP,
33 BasicBlock::iterator IP) {
35 // point. It doesn't need to be the actual IP where the uses of the returned
36 // cast will be added, but it must dominate such IP.
54 // If the cast isn't where we want it, create a new cast at IP.
57 if (BasicBlock::iterator(CI) != IP || BIP == IP) {
61 Ret = CastInst::Create(Op, V, Ty, "", IP);
74 Ret = CastInst::Create(Op, V, Ty, V->getName(), IP);
76 // We assert at the end of the function since IP migh
31 ReuseOrCreateCast(Value *V, Type *Ty, Instruction::CastOps Op, BasicBlock::iterator IP) argument
130 BasicBlock::iterator IP = A->getParent()->getEntryBlock().begin(); local
142 BasicBlock::iterator IP = I; ++IP; local
163 BasicBlock::iterator IP = Builder.GetInsertPoint(); local
536 BasicBlock::iterator IP = Builder.GetInsertPoint(); local
1478 expandCodeFor(const SCEV *SH, Type *Ty, Instruction *IP) argument
1677 Instruction *IP = isa<PHINode>(OrigInc) local
[all...]
/external/iproute2/examples/
H A Dgaiconf9 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
H A DSYN-DoS.rate.limit14 IP=$IPROUTE/ip/ip
/external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
H A Dlasthit.rb44 "IP", "Test", "SubTest", "Total", "Agent")
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.h75 llvm::OwningPtr<llvm::MCInstPrinter> IP; member in class:llvm::LLVMDisasmContext
100 IP.reset(iP);
112 MCInstPrinter *getIP() { return IP.get(); }
H A DDisassembler.cpp87 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant, local
89 assert(IP && "Unable to create instruction printer!");
94 STI, MII, Ctx, DisAsm, IP);
154 MCInstPrinter *IP = DC->getIP(); local
170 IP->printInst(&Inst, OS, Comments);
/external/llvm/unittests/ADT/
H A DSparseSetTest.cpp46 std::pair<USet::iterator, bool> IP = Set.insert(5); local
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); local
107 EXPECT_FALSE(IP.second);
108 EXPECT_TRUE(IP.first == Set.begin() + 1);
/external/iproute2/testsuite/lib/
H A Dgeneric.sh59 $IP $@ 2> $TMP_ERR > $TMP_OUT
63 ts_err "command: $IP $@"
/external/llvm/include/llvm/Analysis/
H A DIntervalIterator.h59 inline Interval *getSourceGraphNode(IntervalPartition *IP, BasicBlock *BB) { argument
60 return IP->getBlockInterval(BB);
108 IntervalIterator(IntervalPartition &IP, bool OwnMemory) : IOwnMem(OwnMemory) { argument
109 OrigContainer = &IP;
110 if (!ProcessInterval(IP.getRootInterval())) {
249 intervals_begin(IntervalPartition &IP, bool DeleteIntervals = true) { argument
250 return interval_part_interval_iterator(IP, DeleteIntervals);
253 inline interval_part_interval_iterator intervals_end(IntervalPartition &IP) { argument
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary49 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
H A Ddictionary.compat17 VALUE Framed-Compression Van-Jacobsen-TCP-IP 1
18 VALUE Framed-Compression VJ-TCP-IP 1
/external/llvm/lib/CodeGen/
H A DShadowStackGC.cpp390 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
391 IRBuilder<> AtEntry(IP->getParent(), IP);
396 while (isa<AllocaInst>(IP)) ++IP;
397 AtEntry.SetInsertPoint(IP->getParent(), IP);
420 while (isa<StoreInst>(IP)) ++IP;
421 AtEntry.SetInsertPoint(IP
[all...]
H A DIntrinsicLowering.cpp165 /// instruction IP.
166 static Value *LowerBSWAP(LLVMContext &Context, Value *V, Instruction *IP) { argument
171 IRBuilder<> Builder(IP->getParent(), IP);
261 /// instruction IP.
262 static Value *LowerCTPOP(LLVMContext &Context, Value *V, Instruction *IP) { argument
271 IRBuilder<> Builder(IP->getParent(), IP);
301 /// instruction IP.
302 static Value *LowerCTLZ(LLVMContext &Context, Value *V, Instruction *IP) { argument
[all...]
H A DGCStrategy.cpp183 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
184 while (isa<AllocaInst>(IP)) ++IP;
188 for (; !CouldBecomeSafePoint(IP); ++IP)
189 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
/external/clang/test/FixIt/
H A Dfixit-cxx0x.cpp108 template<int *ip> struct IP { }; // expected-note{{declared here}} struct
109 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
/external/mesa3d/docs/
H A DMESA_pack_invert.spec45 IP Status
/external/iproute2/testsuite/
H A DMakefile35 TC="$$i/tc/tc" IP="$$i/ip/ip" DEV="$(DEV)" IPVER="$@" SNAME="$$i" \
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1012 void *IP = 0; local
1014 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
1020 CSEMap.InsertNode(N, IP);
1054 void *IP = 0; local
1056 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
1062 CSEMap.InsertNode(N, IP);
1123 void *IP = 0; local
1124 if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1129 CSEMap.InsertNode(N, IP);
1139 void *IP local
1158 void *IP = 0; local
1184 void *IP = 0; local
1211 void *IP = 0; local
1229 void *IP = 0; local
1244 void *IP = 0; local
1387 void* IP = 0; local
1417 void* IP = 0; local
1432 void *IP = 0; local
1446 void *IP = 0; local
1461 void *IP = 0; local
1481 void *IP = 0; local
1499 void *IP = 0; local
1515 void *IP = 0; local
2418 void *IP = 0; local
2682 void *IP = 0; local
3181 void *IP = 0; local
3271 void *IP = 0; local
3979 void* IP = 0; local
4052 void* IP = 0; local
4110 void* IP = 0; local
4190 void *IP = 0; local
4310 void *IP = 0; local
4400 void *IP = 0; local
4468 void *IP = 0; local
4493 void *IP = 0; local
4567 void *IP = 0; local
4633 void *IP = 0; local
5046 void *IP = 0; local
5249 void *IP = 0; local
5313 void *IP = 0; local
[all...]
/external/freetype/src/truetype/
H A Dttinterp.h146 FT_Long IP; /* current instruction pointer */ member in struct:TT_ExecContextRec_
153 /* increment IP after ins. exec */
230 FT_Long IP );
/external/iproute2/examples/diffserv/
H A DEdge113 IP=$IPROUTE/ip/ip
/external/libpcap/
H A Dtokdefs.h47 IP = 273, enumerator in enum:yytokentype
151 #define IP 273 macro

Completed in 1935 milliseconds

1234