Searched defs:IP (Results 1 - 25 of 49) 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/chromium_org/third_party/openssl/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/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 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/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program.h148 unsigned int IP; member in struct:rc_instruction
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Delfcore.h71 #define IP rip macro
81 #define IP eip
95 #define IP uregs[15] /* Program counter */ macro
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Delfcore.h71 #define IP rip macro
81 #define IP eip
95 #define IP uregs[15] /* Program counter */ macro
/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/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.cpp175 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
176 while (isa<AllocaInst>(IP)) ++IP;
180 for (; !CouldBecomeSafePoint(IP); ++IP)
181 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.cpp391 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
392 IRBuilder<> AtEntry(IP->getParent(), IP);
397 while (isa<AllocaInst>(IP)) ++IP;
398 AtEntry.SetInsertPoint(IP->getParent(), IP);
421 while (isa<StoreInst>(IP)) ++IP;
422 AtEntry.SetInsertPoint(IP
[all...]
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp88 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant, local
90 if (!IP)
96 STI, MII, Ctx, DisAsm, IP);
271 MCInstPrinter *IP = DC->getIP(); local
290 IP->printInst(&Inst, FormattedOS, AnnotationsStr);
316 MCInstPrinter *IP = DC->getIP(); local
317 IP->setUseMarkup(1);
323 MCInstPrinter *IP = DC->getIP(); local
324 IP->setPrintImmHex(1);
337 MCInstPrinter *IP local
347 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/lib/Support/
H A DFoldingSet.cpp380 void *IP; local
381 if (Node *E = FindNodeOrInsertPos(ID, IP))
383 InsertNode(N, IP);
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp449 MCInstPrinter *IP = nullptr; local
451 IP =
455 IP->setPrintImmHex(PrintImmHex);
465 /*useDwarfDirectory*/ true, IP, CE,
490 assert(IP && "Expected assembly output");
491 IP->setUseMarkup(1);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program.h148 unsigned int IP; member in struct:rc_instruction
/external/clang/tools/driver/
H A Dcc1as_main.cpp359 MCInstPrinter *IP = local
370 IP, CE, MAB,
/external/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp541 Instruction *IP = findConstantInsertionPoint(ConstInfo); local
544 new BitCastInst(ConstInfo.BaseConstant, Ty, "const", IP);
546 << IP->getParent()->getName() << '\n' << *Base << '\n');
H A DSeparateConstOffsetFromGEP.cpp136 : DL(Layout), IP(InsertionPt) {}
222 Instruction *IP; /// Insertion position of cloned instructions. member in class:__anon25500::ConstantOffsetExtractor
450 Ext->insertBefore(IP);
498 BO->getName(), IP);
501 BO->getName(), IP);
540 BO->getName(), IP);
553 BO->moveBefore(IP);
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp956 BasicBlock::iterator IP = II->getNormalDest()->begin(); local
957 while (isa<PHINode>(IP)) ++IP;
958 InsertPt = IP;
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp197 MCInstPrinter *IP) {
227 IP->printInst(&(*i)->getInsts()->at(ii).Inst, OS, "");
346 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
348 if (!IP) {
366 IP->printInst(&II->Inst, outs(), "");
378 **FI, IP.get());
523 IP->printInst(&Inst, outs(), "");
196 emitDOTFile(const char *FileName, const MCFunction &f, MCInstPrinter *IP) argument
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttinterp.h188 FT_Long IP; /* current instruction pointer */ member in struct:TT_ExecContextRec_
195 /* increment IP after ins. exec */
303 FT_Long IP );

Completed in 1041 milliseconds

12