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

1 2 3 4 5

  /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/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/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/ExecutionEngine/Orc/
IndirectionUtils.cpp 36 auto IP = new GlobalVariable(M, &PT, false, GlobalValue::ExternalLinkage,
39 IP->setVisibility(GlobalValue::HiddenVisibility);
40 return IP;
  /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 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 398 BasicBlock::iterator IP = F.getEntryBlock().begin();
399 IRBuilder<> AtEntry(IP->getParent(), IP);
404 while (isa<AllocaInst>(IP))
405 ++IP;
406 AtEntry.SetInsertPoint(IP->getParent(), IP);
430 while (isa<StoreInst>(IP))
431 ++IP;
432 AtEntry.SetInsertPoint(IP->getParent(), IP)
    [all...]
  /external/llvm/lib/Support/
FoldingSet.cpp 403 void *IP;
404 if (Node *E = FindNodeOrInsertPos(ID, IP))
406 InsertNode(N, IP);
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 479 MCInstPrinter *IP = nullptr;
481 IP = TheTarget->createMCInstPrinter(Triple(TripleName), OutputAsmVariant,
485 IP->setPrintImmHex(PrintImmHex);
497 /*useDwarfDirectory*/ true, IP, CE, MAB, ShowInst));
533 assert(IP && "Expected assembly output");
534 IP->setUseMarkup(1);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.h 148 unsigned int IP;
  /external/clang/tools/driver/
cc1as_main.cpp 375 MCInstPrinter *IP = TheTarget->createMCInstPrinter(
386 /*useDwarfDirectory*/ true, IP, CE, MAB, Opts.ShowInst));
  /external/llvm/lib/Transforms/Scalar/
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...]
SeparateConstOffsetFromGEP.cpp 230 : IP(InsertionPt), DL(InsertionPt->getModule()->getDataLayout()), DT(DT) {
309 Instruction *IP; /// Insertion position of cloned instructions.
582 Ext->insertBefore(IP);
630 BO->getName(), IP);
633 BO->getName(), IP);
682 NewBO = BinaryOperator::Create(NewOp, NextInChain, TheOther, "", IP);
684 NewBO = BinaryOperator::Create(NewOp, TheOther, NextInChain, "", IP);
    [all...]
  /external/selinux/policycoreutils/semanage/
seobject.py 39 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;
  /toolchain/binutils/binutils-2.25/opcodes/
ia64-opc.h 52 #define IP IA64_OPND_IP
  /device/google/contexthub/firmware/inc/platform/stm32f4xx/cmsis/
core_cm0.h 320 __IO uint32_t IP[8]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register */
617 NVIC->IP[_IP_IDX(IRQn)] = (NVIC->IP[_IP_IDX(IRQn)] & ~(0xFF << _BIT_SHIFT(IRQn))) |
639 return((uint32_t)(((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & 0xFF) >> (8 - __NVIC_PRIO_BITS))); } /* get priority for device specific interrupts */
    [all...]
  /external/chromium-trace/catapult/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...]

Completed in 2427 milliseconds

1 2 3 4 5