HomeSort by relevance Sort by last modified time
    Searched defs:IP (Results 1 - 25 of 45) 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);
  /frameworks/compile/libbcc/lib/Disassembler/
Disassembler.cpp 103 llvm::MCInstPrinter *IP;
108 IP = Target->createMCInstPrinter(AsmInfo->getAssemblerDialect(),
126 IP->printInst(&Inst, OS, "");
140 delete IP;
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.h 75 llvm::OwningPtr<llvm::MCInstPrinter> IP;
90 MCInstPrinter *iP) : TripleName(tripleName),
100 IP.reset(iP);
104 MCInstPrinter *getIP() { return IP.get(); }
Disassembler.cpp 87 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant,
89 assert(IP && "Unable to create instruction printer!");
94 STI, MII, Ctx, DisAsm, IP);
154 MCInstPrinter *IP = DC->getIP();
170 IP->printInst(&Inst, OS, Comments);
  /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 93 int *ip; char *kp; member in namespace:TestMisplacedEllipsisRecovery
99 int e = me.e(&ip, &kp);
108 template<int *ip> struct IP { }; // expected-note{{declared here}}
109 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 428 MCInstPrinter *IP =
440 IP, CE, MAB, ShowInst));
  /external/clang/tools/driver/
cc1as_main.cpp 325 MCInstPrinter *IP =
338 IP, CE, MAB,
  /external/llvm/lib/CodeGen/
GCStrategy.cpp 183 BasicBlock::iterator IP = F.getEntryBlock().begin();
184 while (isa<AllocaInst>(IP)) ++IP;
188 for (; !CouldBecomeSafePoint(IP); ++IP)
189 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 364 void *IP;
365 if (Node *E = FindNodeOrInsertPos(ID, IP))
367 InsertNode(N, IP);
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp     [all...]
  /external/llvm/lib/VMCore/
ConstantsContext.h 545 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal);
546 Exists = !IP.second;
547 return IP.first;
  /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/Target/PowerPC/
PPCISelDAGToDAG.cpp 205 MachineBasicBlock::iterator IP = EntryBB.begin(); // Insert Point
206 BuildMI(EntryBB, IP, dl, TII.get(PPC::MFVRSAVE), InVRSAVE);
207 BuildMI(EntryBB, IP, dl, TII.get(PPC::UPDATE_VRSAVE),
209 BuildMI(EntryBB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(UpdatedVRSAVE);
214 IP = BB->end(); --IP;
218 MachineBasicBlock::iterator I2 = IP;
220 IP = I2;
223 BuildMI(*BB, IP, dl, TII.get(PPC::MTVRSAVE)).addReg(InVRSAVE);
    [all...]
  /external/libpcap/
tokdefs.h 47 IP = 273,
151 #define IP 273
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 310 void *IP = 0;
311 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
313 UniqueSCEVs.InsertNode(S, IP);
823 void *IP = 0;
824 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
856 UniqueSCEVs.FindNodeOrInsertPos(ID, IP); // Mutates IP, returns NULL.
871 UniqueSCEVs.FindNodeOrInsertPos(ID, IP); // Mutates IP, returns NULL.
    [all...]
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...]
  /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 584 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 1871 milliseconds

1 2