Searched defs:IP (Results 1 - 25 of 35) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A Dmangle-nullptr-arg.cpp3 template<int *ip> struct IP {}; struct
6 void test1(IP<nullptr>) {}
/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)
/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/openssl/crypto/des/
H A Ddes_locl.h363 /* IP and FP
394 Thanks for hints from Richard Outerbridge - he told me IP&FP
404 #define IP(l,r) \ macro
/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/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/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp406 MCInstPrinter *IP = local
418 IP, CE, MAB, ShowInst));
/external/clang/tools/driver/
H A Dcc1as_main.cpp325 MCInstPrinter *IP = local
338 IP, CE, MAB,
/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/llvm/lib/CodeGen/
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))
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 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 DBranchFolding.cpp907 MachineFunction::iterator IP = PBB; IP++; local
909 if (IP != MF.end())
910 PredNextBB = IP;
/external/llvm/lib/MC/MCDisassembler/
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);
H A DDisassembler.h75 llvm::OwningPtr<llvm::MCInstPrinter> IP; member in class:llvm::LLVMDisasmContext
100 IP.reset(iP);
112 MCInstPrinter *getIP() { return IP.get(); }
/external/llvm/lib/Support/
H A DFoldingSet.cpp382 void *IP; local
383 if (Node *E = FindNodeOrInsertPos(ID, IP))
385 InsertNode(N, IP);
/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/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp853 BasicBlock::iterator IP = II->getNormalDest()->begin(); local
854 while (isa<PHINode>(IP)) ++IP;
855 InsertPt = IP;
/external/llvm/lib/VMCore/
H A DConstantsContext.h552 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal); local
553 Exists = !IP.second;
554 return IP.first;
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp157 MCInstPrinter *IP) {
189 IP->printInst(&i->second.getInsts()[ii].Inst, OS, "");
264 IP(TheTarget->createMCInstPrinter(AsmPrinterVariant, *AsmInfo, *InstrInfo,
267 if (!InstrAnalysis || !AsmInfo || !STI || !DisAsm || !IP) {
475 IP->printInst(&Inst, outs(), "");
517 IP->printInst(&Inst, outs(), "");
621 IP->printInst(&Inst.Inst, outs(), "");
660 emitDOTFile((f.getName().str() + ".dot").c_str(), f, IP.get());
156 emitDOTFile(const char *FileName, const MCFunction &f, MCInstPrinter *IP) argument
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp565 llvm::MCInstPrinter *IP = local
600 IP->printRegName(OS, Op.getReg());
/external/libpcap/
H A Dtokdefs.h47 IP = 273, enumerator in enum:yytokentype
151 #define IP 273 macro
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp222 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point local
223 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
224 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
226 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
231 IP = BB->end(); --IP;
235 MachineBasicBlock::iterator I2 = IP;
237 IP = I2;
240 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
/external/clang/lib/CodeGen/
H A DCGCall.cpp1471 // for something immediately preceding the IP. Sometimes this can
1475 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock(); local
1476 if (IP->empty()) return 0;
1477 llvm::StoreInst *store = dyn_cast<llvm::StoreInst>(&IP->back());
1495 llvm::BasicBlock *IP = CGF.Builder.GetInsertBlock(); local
1496 while (IP != StoreBB) {
1497 if (!(IP = IP->getSinglePredecessor()))
/external/grub/netboot/
H A Detherboot.h102 as Etherboot, subtract the size of an IP header and that of an UDP
118 #define IP 0x0800 macro
322 /* Format of a bootp IP packet. */

Completed in 650 milliseconds

12