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

12345

/external/clang/test/CodeGenCXX/
H A Dmangle-nullptr-arg.cpp3 template<int *ip> struct IP {}; struct
6 void test1(IP<nullptr>) {}
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1-11.cpp7 template<int *ip> struct IP { // expected-note 5 {{template parameter is declared here}} struct
8 IP<ip> *ip2;
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;
26 IP<np> ip5;
27 IP<nonconst_np> ip5; // expected-error{{non-type template argument of type 'std::nullptr_t' (aka 'nullptr_t') is not a constant expression}} \
29 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 DAssumptionCache.cpp109 auto IP = AssumptionCaches.insert(std::make_pair(
111 assert(IP.second && "Scanning function already in the map?");
112 return *IP.first->second;
H A DScalarEvolutionExpander.cpp32 /// ReuseOrCreateCast - Arrange for there to be a cast of V to Ty at IP,
38 BasicBlock::iterator IP) {
40 // point. It doesn't need to be the actual IP where the uses of the returned
41 // cast will be added, but it must dominate such IP.
57 // If the cast isn't where we want it, create a new cast at IP.
60 if (BasicBlock::iterator(CI) != IP || BIP == IP) {
64 Ret = CastInst::Create(Op, V, Ty, "", IP);
76 Ret = CastInst::Create(Op, V, Ty, V->getName(), IP);
78 // We assert at the end of the function since IP migh
36 ReuseOrCreateCast(Value *V, Type *Ty, Instruction::CastOps Op, BasicBlock::iterator IP) argument
132 BasicBlock::iterator IP = A->getParent()->getEntryBlock().begin(); local
144 BasicBlock::iterator IP = I; ++IP; local
165 BasicBlock::iterator IP = Builder.GetInsertPoint(); local
499 BasicBlock::iterator IP = Builder.GetInsertPoint(); local
1581 expandCodeFor(const SCEV *SH, Type *Ty, Instruction *IP) argument
1778 Instruction *IP = nullptr; 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/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp85 MCInstPrinter *IP = TheTarget->createMCInstPrinter( local
87 if (!IP)
92 TheTarget, MAI, MRI, STI, MII, Ctx, DisAsm, IP);
251 MCInstPrinter *IP = DC->getIP(); local
270 IP->printInst(&Inst, FormattedOS, AnnotationsStr, *DC->getSubtargetInfo());
296 MCInstPrinter *IP = DC->getIP(); local
297 IP->setUseMarkup(1);
303 MCInstPrinter *IP = DC->getIP(); local
304 IP->setPrintImmHex(1);
316 MCInstPrinter *IP local
326 MCInstPrinter *IP = DC->getIP(); local
[all...]
H A DDisassembler.h74 std::unique_ptr<llvm::MCInstPrinter> IP; member in class:llvm::LLVMDisasmContext
104 IP.reset(iP);
119 MCInstPrinter *getIP() { return IP.get(); }
120 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); }
/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);
113 IntervalIterator(IntervalPartition &IP, bool OwnMemory) : IOwnMem(OwnMemory) { argument
114 OrigContainer = &IP;
115 if (!ProcessInterval(IP.getRootInterval())) {
258 intervals_begin(IntervalPartition &IP, bool DeleteIntervals = true) { argument
259 return interval_part_interval_iterator(IP, DeleteIntervals);
262 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 DShadowStackGCLowering.cpp394 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
395 IRBuilder<> AtEntry(IP->getParent(), IP);
400 while (isa<AllocaInst>(IP))
401 ++IP;
402 AtEntry.SetInsertPoint(IP->getParent(), IP);
426 while (isa<StoreInst>(IP))
427 ++IP;
428 AtEntry.SetInsertPoint(IP
[all...]
H A DGCRootLowering.cpp155 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
156 while (isa<AllocaInst>(IP))
157 ++IP;
161 for (; !CouldBecomeSafePoint(IP); ++IP)
162 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
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...]
/external/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp350 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end(); local
354 for (; IP != BE; ++IP) {
355 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
361 DebugLoc EntryLoc = IsEntryBB && IP->getDebugLoc()
362 ? IP->getDebugLoc().getFnDebugLoc()
363 : IP->getDebugLoc();
364 IRBuilder<> IRB(IP);
381 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
390 IRB.SetInsertPoint(IP);
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_variable.c130 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...]
H A Dradeon_program.h148 unsigned int IP; member in struct:rc_instruction
/external/clang/test/FixIt/
H A Dfixit-cxx0x.cpp106 template<int *ip> struct IP { }; // expected-note{{declared here}} struct
107 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/valgrind/include/
H A Dpub_tool_addrinfo.h128 // IP is the address of an instruction of the function where the
138 Addr IP; member in struct:_AddrInfo::__anon16358::__anon16360
/external/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp210 ConstantOffsetExtractor(Instruction *InsertionPt) : IP(InsertionPt) {}
294 Instruction *IP; /// Insertion position of cloned instructions. member in class:__anon11090::ConstantOffsetExtractor
522 Ext->insertBefore(IP);
570 BO->getName(), IP);
573 BO->getName(), IP);
613 IP);
616 IP);
630 BO->moveBefore(IP);
659 const DataLayout &DL = IP->getModule()->getDataLayout();

Completed in 691 milliseconds

12345