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

1 2 3 4 5 6 7 8 9

  /external/clang/test/CodeGenCXX/
mangle-nullptr-arg.cpp 3 template<int *ip> struct IP {};
6 void test1(IP<nullptr>) {}
  /external/boringssl/src/crypto/fipsmodule/des/
internal.h 132 /* IP and FP
163 Thanks for hints from Richard Outerbridge - he told me IP&FP
176 #define IP(l, r) \
des.c 387 IP(r, l);
508 IP(l, r);
527 IP(l, r);
779 #undef IP
  /external/llvm/lib/MC/
MCSection.cpp 71 iterator IP;
73 IP = end();
75 IP = MI->second->getIterator();
81 getFragmentList().insert(IP, F);
85 return IP;
  /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/clang/test/SemaCXX/
delete-and-function-templates.cpp 20 int *ip = g(3); local
32 int *ip = g(3.14); // this is OK - because the explicit specialization is deleted and sfinae's out one of the template candidates local
46 double *ip = g(3.14); //expected-error{{ambiguous}} local
64 int *ip = g(3); //expected-error{{ambiguous}} local
80 int *ip = g(3); //expected-error{{ambiguous}} local
102 int *ip = g1(3, 3); //expected-error{{ambiguous}} local
121 int *IP = foo(2); //expected-error{{deleted}}
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
Disassembler.h 69 llvm::OwningPtr<llvm::MCInstPrinter> IP;
82 MCInstPrinter *iP) : TripleName(tripleName),
90 IP.reset(iP);
94 MCInstPrinter *getIP() { return IP.get(); }
Disassembler.cpp 75 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant,
77 assert(IP && "Unable to create instruction printer!");
82 Ctx, DisAsm, IP);
142 MCInstPrinter *IP = DC->getIP();
158 IP->printInst(&Inst, OS, Comments);
  /prebuilts/go/darwin-x86/test/
escape_slice.go 123 func IPv4(a, b, c, d byte) IP {
124 p := make(IP, IPv6len) // ERROR "make\(IP, IPv6len\) escapes to heap"
133 type IP []byte
136 IP IP
148 {"ip", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
149 {"ip4", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
150 {"ip4:icmp", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil}
    [all...]
  /prebuilts/go/linux-x86/test/
escape_slice.go 123 func IPv4(a, b, c, d byte) IP {
124 p := make(IP, IPv6len) // ERROR "make\(IP, IPv6len\) escapes to heap"
133 type IP []byte
136 IP IP
148 {"ip", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
149 {"ip4", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil},
150 {"ip4:icmp", "127.0.0.1", &IPAddr{IP: IPv4(127, 0, 0, 1)}, nil}
    [all...]
  /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);
249 MCInstPrinter *IP = DC->getIP();
267 IP->printInst(&Inst, FormattedOS, AnnotationsStr, *DC->getSubtargetInfo());
292 MCInstPrinter *IP = DC->getIP();
293 IP->setUseMarkup(1);
299 MCInstPrinter *IP = DC->getIP();
300 IP->setPrintImmHex(1);
312 MCInstPrinter *IP = DC->getTarget()->createMCInstPrinter
    [all...]
Disassembler.h 75 std::unique_ptr<llvm::MCInstPrinter> IP;
92 const MCDisassembler *disAsm, MCInstPrinter *iP)
102 IP.reset(iP);
117 MCInstPrinter *getIP() { return IP.get(); }
118 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); }
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
VirtRegMap.cpp 186 MI2VirtMapTy::iterator IP = MI2VirtMap.lower_bound(NewMI);
189 MI2VirtMap.insert(IP, std::make_pair(NewMI, I->second));
194 MI2VirtMap.insert(IP, std::make_pair(NewMI, std::make_pair(VirtReg, MRInfo)));
198 MI2VirtMapTy::iterator IP = MI2VirtMap.lower_bound(MI);
199 MI2VirtMap.insert(IP, std::make_pair(MI, std::make_pair(VirtReg, MRInfo)));
GCStrategy.cpp 177 BasicBlock::iterator IP = F.getEntryBlock().begin();
178 while (isa<AllocaInst>(IP)) ++IP;
182 for (; !CouldBecomeSafePoint(IP); ++IP)
183 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
llvm-mc.cpp 401 MCInstPrinter *IP =
411 /*useCFI*/ true, IP, CE, MAB,
  /art/runtime/arch/arm/
registers_arm.h 46 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/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))
  /external/llvm/lib/Support/
FoldingSet.cpp 418 void *IP;
419 if (Node *E = FindNodeOrInsertPos(ID, IP))
421 InsertNode(N, IP);
  /external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 552 Instruction *IP = findConstantInsertionPoint(ConstInfo);
555 new BitCastInst(ConstInfo.BaseConstant, Ty, "const", IP);
557 << IP->getParent()->getName() << '\n' << *Base << '\n');
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 493 MCInstPrinter *IP = nullptr;
495 IP = TheTarget->createMCInstPrinter(Triple(TripleName), OutputAsmVariant,
499 IP->setPrintImmHex(PrintImmHex);
511 /*useDwarfDirectory*/ true, IP, CE, MAB, ShowInst));
547 assert(IP && "Expected assembly output");
548 IP->setUseMarkup(1);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.h 148 unsigned int IP;
  /external/swiftshader/third_party/LLVM/lib/Support/
FoldingSet.cpp 380 void *IP;
381 if (Node *E = FindNodeOrInsertPos(ID, IP))
383 InsertNode(N, IP);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantsContext.h 610 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal);
611 Exists = !IP.second;
612 return IP.first;

Completed in 833 milliseconds

1 2 3 4 5 6 7 8 9