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

1 2

  /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/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 79 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant,
81 if (!IP)
87 STI, MII, Ctx, DisAsm, IP);
155 MCInstPrinter *IP = DC->getIP();
171 IP->printInst(&Inst, OS, Comments);
196 MCInstPrinter *IP = DC->getIP();
197 IP->setUseMarkup(1);
202 MCInstPrinter *IP = DC->getIP();
203 IP->setPrintImmHex(1);
215 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter
    [all...]
Disassembler.h 75 llvm::OwningPtr<llvm::MCInstPrinter> IP;
90 MCInstPrinter *iP) : TripleName(tripleName),
100 IP.reset(iP);
115 MCInstPrinter *getIP() { return IP.get(); }
116 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); }
  /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 4 {{template parameter is declared here}}
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
    [all...]
  /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/llvm/tools/llvm-mc/
llvm-mc.cpp 430 MCInstPrinter *IP = NULL;
432 IP =
445 IP, CE, MAB, ShowInst));
468 assert(IP && "Expected assembly output");
469 IP->setUseMarkup(1);
473 assert(IP && "Expected assembly output");
474 IP->setPrintImmHex(1);
  /external/clang/tools/driver/
cc1as_main.cpp 337 MCInstPrinter *IP =
350 IP, CE, MAB,
  /external/llvm/lib/CodeGen/
GCStrategy.cpp 184 BasicBlock::iterator IP = F.getEntryBlock().begin();
185 while (isa<AllocaInst>(IP)) ++IP;
189 for (; !CouldBecomeSafePoint(IP); ++IP)
190 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
ShadowStackGC.cpp 390 BasicBlock::iterator IP = F.getEntryBlock().begin();
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->getParent(), IP)
    [all...]
BranchFolding.cpp     [all...]
  /external/llvm/lib/Support/
FoldingSet.cpp 380 void *IP;
381 if (Node *E = FindNodeOrInsertPos(ID, IP))
383 InsertNode(N, IP);
  /external/llvm/lib/IR/
ConstantsContext.h 552 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal);
553 Exists = !IP.second;
554 return IP.first;
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 633 llvm::MCInstPrinter *IP =
655 Clobbers, MII, IP, MCAPSI))
  /external/freetype/src/truetype/
ttinterp.h 146 FT_Long IP; /* current instruction pointer */
153 /* increment IP after ins. exec */
230 FT_Long IP );
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp     [all...]
  /external/libpcap/
tokdefs.h 47 IP = 273,
151 #define IP 273
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 27 /// ReuseOrCreateCast - Arrange for there to be a cast of V to Ty at IP,
33 BasicBlock::iterator IP) {
35 // point. It doesn't need to be the actual IP where the uses of the returned
36 // cast will be added, but it must dominate such IP.
54 // If the cast isn't where we want it, create a new cast at IP.
57 if (BasicBlock::iterator(CI) != IP || BIP == IP) {
61 Ret = CastInst::Create(Op, V, Ty, "", IP);
74 Ret = CastInst::Create(Op, V, Ty, V->getName(), IP);
76 // We assert at the end of the function since IP might point to a
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 465 void *IP = 0;
466 if (BitsInit *I = ThePool.FindNodeOrInsertPos(ID, IP))
470 ThePool.InsertNode(I, IP);
619 void *IP = 0;
620 if (ListInit *I = ThePool.FindNodeOrInsertPos(ID, IP))
624 ThePool.InsertNode(I, IP);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 234 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
235 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
236 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
238 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
243 IP = BB->end(); --IP;
247 MachineBasicBlock::iterator I2 = IP;
249 IP = I2;
252 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
    [all...]
  /bionic/libc/include/arpa/
telnet.h 49 #define IP 244 /* interrupt process--permanently */
64 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
202 #define SLC_NAMELIST "0", "SYNCH", "BRK", "IP", "AO", "AYT", "EOR", \
  /development/ndk/platforms/android-9/include/arpa/
telnet.h 49 #define IP 244 /* interrupt process--permanently */
64 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
202 #define SLC_NAMELIST "0", "SYNCH", "BRK", "IP", "AO", "AYT", "EOR", \
  /external/clang/lib/CodeGen/
CGCall.cpp 672 Val = CGF.Builder.CreateIntToPtr(Val, Ty, "coerce.val.ip");
    [all...]
  /external/grub/netboot/
etherboot.h 102 as Etherboot, subtract the size of an IP header and that of an UDP
118 #define IP 0x0800
322 /* Format of a bootp IP packet. */
325 struct iphdr ip; member in struct:bootpip_t
339 struct iphdr ip; member in struct:tftp_t
379 struct iphdr ip; member in struct:tftpreq_t
406 struct iphdr ip; member in struct:rpc_t
498 extern int ifconfig (char *ip, char *sm, char *gw, char *svr);

Completed in 457 milliseconds

1 2