/external/clang/test/CodeGenCXX/ |
mangle-nullptr-arg.cpp | 3 template<int *ip> struct IP {}; 6 void test1(IP<nullptr>) {}
|
/external/llvm/unittests/ADT/ |
SparseSetTest.cpp | 46 std::pair<USet::iterator, bool> IP = Set.insert(5); 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); 107 EXPECT_FALSE(IP.second); 108 EXPECT_TRUE(IP.first == Set.begin() + 1);
|
/external/boringssl/src/crypto/des/ |
internal.h | 126 /* IP and FP 157 Thanks for hints from Richard Outerbridge - he told me IP&FP 166 #define IP(l, r) \
|
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/ |
p1-11.cpp | 7 template<int *ip> struct IP { // expected-note 5 {{template parameter is declared here}} 8 IP<ip> *ip2; 11 template<int &ip> struct IR {}; 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 [all...] |
/external/llvm/lib/MC/MCDisassembler/ |
Disassembler.cpp | 85 MCInstPrinter *IP = TheTarget->createMCInstPrinter( 87 if (!IP) 92 TheTarget, MAI, MRI, STI, MII, Ctx, DisAsm, IP); 251 MCInstPrinter *IP = DC->getIP(); 270 IP->printInst(&Inst, FormattedOS, AnnotationsStr, *DC->getSubtargetInfo()); 296 MCInstPrinter *IP = DC->getIP(); 297 IP->setUseMarkup(1); 303 MCInstPrinter *IP = DC->getIP(); 304 IP->setPrintImmHex(1); 316 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter [all...] |
Disassembler.h | 74 std::unique_ptr<llvm::MCInstPrinter> IP; 93 MCInstPrinter *iP) : TripleName(tripleName), 104 IP.reset(iP); 119 MCInstPrinter *getIP() { return IP.get(); } 120 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); }
|
/art/runtime/arch/arm/ |
registers_arm.h | 45 IP = 12,
|
/external/clang/test/FixIt/ |
fixit-cxx0x.cpp | 91 int *ip; char *kp; member in namespace:TestMisplacedEllipsisRecovery 97 int e = me.e(&ip, &kp); 106 template<int *ip> struct IP { }; // expected-note{{declared here}} 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/ |
UnixCrypt.java | 39 private static final byte[] IP = { /* initial permutation */ 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/lib/CodeGen/ |
GCRootLowering.cpp | 155 BasicBlock::iterator IP = F.getEntryBlock().begin(); 156 while (isa<AllocaInst>(IP)) 157 ++IP; 161 for (; !CouldBecomeSafePoint(IP); ++IP) 162 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
|
ShadowStackGCLowering.cpp | 394 BasicBlock::iterator IP = F.getEntryBlock().begin(); 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->getParent(), IP) [all...] |
BranchFolding.cpp | [all...] |
/external/llvm/lib/Support/ |
FoldingSet.cpp | 383 void *IP; 384 if (Node *E = FindNodeOrInsertPos(ID, IP)) 386 InsertNode(N, IP);
|
/external/llvm/lib/Transforms/Scalar/ |
SeparateConstOffsetFromGEP.cpp | 210 ConstantOffsetExtractor(Instruction *InsertionPt) : IP(InsertionPt) {} 294 Instruction *IP; /// Insertion position of cloned instructions. 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(); [all...] |
ConstantHoisting.cpp | 545 Instruction *IP = findConstantInsertionPoint(ConstInfo); 548 new BitCastInst(ConstInfo.BaseConstant, Ty, "const", IP); 550 << IP->getParent()->getName() << '\n' << *Base << '\n');
|
PlaceSafepoints.cpp | [all...] |
/external/llvm/tools/llvm-mc/ |
llvm-mc.cpp | 450 MCInstPrinter *IP = nullptr; 452 IP = TheTarget->createMCInstPrinter(Triple(TripleName), OutputAsmVariant, 456 IP->setPrintImmHex(PrintImmHex); 468 /*useDwarfDirectory*/ true, IP, CE, MAB, ShowInst)); 500 assert(IP && "Expected assembly output"); 501 IP->setUseMarkup(1);
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_program.h | 148 unsigned int IP;
|
/external/clang/tools/driver/ |
cc1as_main.cpp | 363 MCInstPrinter *IP = TheTarget->createMCInstPrinter( 374 /*useDwarfDirectory*/ true, IP, CE, MAB, Opts.ShowInst));
|
/external/llvm/lib/Transforms/Instrumentation/ |
SanitizerCoverage.cpp | 350 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end(); 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/selinux/policycoreutils/semanage/ |
seobject.py | 30 from IPy import IP [all...] |
/external/valgrind/include/ |
pub_tool_addrinfo.h | 128 // IP is the address of an instruction of the function where the 138 Addr IP;
|
/external/llvm/lib/Transforms/IPO/ |
DeadArgumentElimination.cpp | [all...] |
/external/freetype/src/truetype/ |
ttinterp.h | 180 FT_Long IP; /* current instruction pointer */ 187 /* increment IP after ins. exec */ 294 FT_Long IP );
|
/external/libpcap/ |
tokdefs.h | 55 IP = 273, 176 #define IP 273
|