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

123

/external/clang/test/CodeGenCXX/
H A Dmangle-nullptr-arg.cpp3 template<int *ip> struct IP {}; struct
6 void test1(IP<nullptr>) {}
/external/llvm/lib/Transforms/Instrumentation/
H A DInstrumentation.cpp23 /// Moves I before IP. Returns new insert point.
24 static BasicBlock::iterator moveBeforeInsertPoint(BasicBlock::iterator I, BasicBlock::iterator IP) { argument
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) {
38 PrepareToSplitEntryBlock(BasicBlock &BB, BasicBlock::iterator IP) argument
[all...]
/external/boringssl/src/crypto/des/
H A Dinternal.h126 /* IP and FP
157 Thanks for hints from Richard Outerbridge - he told me IP&FP
166 #define IP(l, r) \ macro
/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/llvm/lib/MC/
H A DMCSection.cpp71 iterator IP; local
73 IP = end();
75 IP = MI->second->getIterator();
81 getFragmentList().insert(IP, F);
85 return IP;
/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/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/jetty/src/java/org/eclipse/jetty/util/security/
H A DUnixCrypt.java39 private static final byte[] IP = { /* initial permutation */ field in class:UnixCrypt
43 /* The final permutation is the inverse of IP - no table is necessary */
184 int k = (j < 2) ? 0 : IP[ExpandTr[i * 6 + j - 2] - 1];
203 int k = IP[CIFP[i] - 1];
/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/llvm/lib/CodeGen/
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);
261 /// instruction IP.
262 static Value *LowerCTPOP(LLVMContext &Context, Value *V, Instruction *IP) { argument
271 IRBuilder<> Builder(IP);
301 /// instruction IP.
302 static Value *LowerCTLZ(LLVMContext &Context, Value *V, Instruction *IP) { argument
304 IRBuilder<> Builder(IP);
314 return LowerCTPOP(Context, V, IP);
[all...]
H A DShadowStackGCLowering.cpp398 BasicBlock::iterator IP = F.getEntryBlock().begin(); local
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
[all...]
/external/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp36 auto IP = new GlobalVariable(M, &PT, false, GlobalValue::ExternalLinkage, local
39 IP->setVisibility(GlobalValue::HiddenVisibility);
40 return 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);
249 MCInstPrinter *IP = DC->getIP(); local
267 IP->printInst(&Inst, FormattedOS, AnnotationsStr, *DC->getSubtargetInfo());
292 MCInstPrinter *IP = DC->getIP(); local
293 IP->setUseMarkup(1);
299 MCInstPrinter *IP = DC->getIP(); local
300 IP->setPrintImmHex(1);
312 MCInstPrinter *IP local
322 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.cpp403 void *IP; local
404 if (Node *E = FindNodeOrInsertPos(ID, IP))
406 InsertNode(N, IP);
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp479 MCInstPrinter *IP = nullptr; local
481 IP = TheTarget->createMCInstPrinter(Triple(TripleName), OutputAsmVariant,
485 IP->setPrintImmHex(PrintImmHex);
497 /*useDwarfDirectory*/ true, IP, CE, MAB, ShowInst));
533 assert(IP && "Expected assembly output");
534 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.cpp375 MCInstPrinter *IP = TheTarget->createMCInstPrinter( local
386 /*useDwarfDirectory*/ true, IP, CE, MAB, Opts.ShowInst));
/external/llvm/lib/Target/X86/
H A DX86WinEHState.cpp71 void insertStateNumberStore(Value *ParentRegNode, Instruction *IP, int State);
451 Instruction *IP, int State) {
452 IRBuilder<> Builder(IP);
450 insertStateNumberStore(Value *ParentRegNode, Instruction *IP, int State) argument
/external/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp545 Instruction *IP = findConstantInsertionPoint(ConstInfo); local
548 new BitCastInst(ConstInfo.BaseConstant, Ty, "const", IP);
550 << IP->getParent()->getName() << '\n' << *Base << '\n');
H A DPlaceSafepoints.cpp931 Instruction *IP = &*(NormalDest->getFirstInsertionPt()); local
932 Builder.SetInsertPoint(IP);
/external/selinux/policycoreutils/semanage/
H A Dseobject.py39 from IPy import IP namespace
1300 i = IP(addr + mask)
1505 print "%-18s %-18s %-5s %-5s\n" % ("IP Address", "Netmask", "Protocol", "Context")
/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::__anon20407::__anon20409

Completed in 6750 milliseconds

123