HomeSort by relevance Sort by last modified time
    Searched defs:IP (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /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/chromium_org/third_party/openssl/openssl/crypto/des/
des_locl.h 363 /* IP and FP
394 Thanks for hints from Richard Outerbridge - he told me IP&FP
404 #define IP(l,r) \
  /external/openssl/crypto/des/
des_locl.h 363 /* IP and FP
394 Thanks for hints from Richard Outerbridge - he told me IP&FP
404 #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.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); }
Disassembler.cpp 88 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant,
90 if (!IP)
96 STI, MII, Ctx, DisAsm, IP);
271 MCInstPrinter *IP = DC->getIP();
290 IP->printInst(&Inst, FormattedOS, AnnotationsStr);
316 MCInstPrinter *IP = DC->getIP();
317 IP->setUseMarkup(1);
323 MCInstPrinter *IP = DC->getIP();
324 IP->setPrintImmHex(1);
337 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 449 MCInstPrinter *IP = nullptr;
451 IP =
455 IP->setPrintImmHex(PrintImmHex);
465 /*useDwarfDirectory*/ true, IP, CE,
490 assert(IP && "Expected assembly output");
491 IP->setUseMarkup(1);
  /art/runtime/arch/arm/
registers_arm.h 45 IP = 12,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_program.h 148 unsigned int IP;
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
elfcore.h 71 #define IP rip
81 #define IP eip
95 #define IP uregs[15] /* Program counter */
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
elfcore.h 71 #define IP rip
81 #define IP eip
95 #define IP uregs[15] /* Program counter */
  /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/clang/tools/driver/
cc1as_main.cpp 359 MCInstPrinter *IP =
370 IP, CE, MAB,
  /external/llvm/lib/CodeGen/
GCStrategy.cpp 175 BasicBlock::iterator IP = F.getEntryBlock().begin();
176 while (isa<AllocaInst>(IP)) ++IP;
180 for (; !CouldBecomeSafePoint(IP); ++IP)
181 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
ShadowStackGC.cpp 391 BasicBlock::iterator IP = F.getEntryBlock().begin();
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->getParent(), IP)
    [all...]
  /external/llvm/lib/Support/
FoldingSet.cpp 380 void *IP;
381 if (Node *E = FindNodeOrInsertPos(ID, IP))
383 InsertNode(N, IP);
  /external/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 136 : DL(Layout), IP(InsertionPt) {}
222 Instruction *IP; /// Insertion position of cloned instructions.
450 Ext->insertBefore(IP);
498 BO->getName(), IP);
501 BO->getName(), IP);
540 BO->getName(), IP);
553 BO->moveBefore(IP);
    [all...]
ConstantHoisting.cpp 541 Instruction *IP = findConstantInsertionPoint(ConstInfo);
544 new BitCastInst(ConstInfo.BaseConstant, Ty, "const", IP);
546 << IP->getParent()->getName() << '\n' << *Base << '\n');
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.h 148 unsigned int IP;
  /external/llvm/lib/IR/
ConstantsContext.h 544 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal);
545 Exists = !IP.second;
546 return IP.first;
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp     [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttinterp.h 188 FT_Long IP; /* current instruction pointer */
195 /* increment IP after ins. exec */
303 FT_Long IP );
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
rfc2217.py 7 # protocol to access serial ports over TCP/IP and allows setting the baud rate,
72 # host may be an IP or including domain, whatever.
96 IP = to_bytes([244]) # Interrupt process
    [all...]
  /external/freetype/src/truetype/
ttinterp.h 188 FT_Long IP; /* current instruction pointer */
195 /* increment IP after ins. exec */
301 FT_Long IP );

Completed in 3155 milliseconds

1 2 3 4