Searched refs:MCI (Results 1 - 20 of 20) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/
H A DHexagonAsmPrinter.cpp222 HexagonMCInst MCI; local
223 MCI.setPacketStart(Index == 0);
224 MCI.setPacketEnd(Index == (Size-1));
226 HexagonLowerToMC(BundleMIs[Index], MCI, *this);
227 OutStreamer.EmitInstruction(MCI);
231 HexagonMCInst MCI; local
233 MCI.setPacketStart(true);
234 MCI.setPacketEnd(true);
236 HexagonLowerToMC(MI, MCI, *this);
237 OutStreamer.EmitInstruction(MCI);
[all...]
H A DHexagonMCInstLower.cpp42 void llvm::HexagonLowerToMC(const MachineInstr* MI, HexagonMCInst& MCI, argument
44 MCI.setOpcode(MI->getOpcode());
45 MCI.setDesc(MI->getDesc());
93 MCI.addOperand(MCO);
H A DHexagon.h61 void HexagonLowerToMC(const MachineInstr *MI, HexagonMCInst &MCI,
/freebsd-10-stable/contrib/sendmail/src/
H A Dmci.c26 static bool mci_load_persistent __P((MCI *));
27 static void mci_uncache __P((MCI **, bool));
28 static int mci_lock_host_statfile __P((MCI *));
29 static int mci_read_persistent __P((SM_FILE_T *, MCI *));
32 ** Mail Connection Information (MCI) Caching Module.
54 ** The persistent MCI code is donated by Mark Lovell and Paul
57 ** MCI structure.
60 static MCI **MciCache; /* the open connection cache */
76 register MCI *mci;
78 register MCI **mcislo
[all...]
H A Dsendmail.h698 #define MCI struct mailer_con_info macro
700 MCI
799 extern void mci_cache __P((MCI *));
800 extern void mci_close __P((MCI *, char *where));
801 extern void mci_dump __P((SM_FILE_T *, MCI *, bool));
803 extern void mci_flush __P((bool, MCI *));
804 extern void mci_clr_extensions __P((MCI *));
805 extern MCI *mci_get __P((char *, MAILER *));
806 extern int mci_lock_host __P((MCI *));
810 extern MCI **mci_sca
[all...]
H A Dusersmtp.c21 static void esmtp_check __P((char *, bool, MAILER *, MCI *, ENVELOPE *));
22 static void helo_options __P((char *, bool, MAILER *, MCI *, ENVELOPE *));
23 static int smtprcptstat __P((ADDRESS *, MAILER *, MCI *, ENVELOPE *));
67 register MCI *mci;
291 register MCI *mci;
410 register MCI *mci;
523 static int getauth __P((MCI *, ENVELOPE *, SASL_AI_T *));
525 static int attemptauth __P((MAILER *, MCI *, ENVELOPE *, SASL_AI_T *));
614 static void getsasldata __P((char *, bool, MAILER *, MCI *, ENVELOPE *));
621 register MCI *mc
[all...]
H A Ddeliver.c41 static int starttls __P((MAILER *, MCI *, ENVELOPE *));
42 static int endtlsclt __P((MCI *));
1303 register MCI *volatile mci;
3694 register MCI *mci;
3842 register MCI *mci;
3984 register MCI *mci;
4234 register MCI *mci;
4551 register MCI *mci;
4626 register MCI *mci;
5299 MCI mcibu
[all...]
H A Dsavemail.c18 static bool errbody __P((MCI *, ENVELOPE *, char *));
64 MCI mcibuf;
768 register MCI *mci;
H A Dheaders.c22 static bool put_vanilla_header __P((HDR *, char *, MCI *));
1702 register MCI *mci;
1973 MCI *mci;
2040 register MCI *mci;
H A Dmime.c101 register MCI *mci;
1033 register MCI *mci;
H A Dutil.c1002 register MCI *mci;
1066 register MCI *mci;
H A Ddaemon.c2110 register MCI *mci;
2924 register MCI *mci;
H A Dqueue.c353 MCI mcibuf;
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp442 void JIT::runJITOnFunction(Function *F, MachineCodeInfo *MCI) { argument
446 MachineCodeInfo *const MCI; member in class:MCIListener
448 MCIListener(MachineCodeInfo *mci) : MCI(mci) {}
452 MCI->setAddress(Code);
453 MCI->setSize(Size);
456 MCIListener MCIL(MCI);
457 if (MCI)
462 if (MCI)
H A DJIT.h192 void runJITOnFunction(Function *F, MachineCodeInfo *MCI = 0);
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DLint.cpp275 MemCpyInst *MCI = cast<MemCpyInst>(&I); local
277 visitMemoryReference(I, MCI->getDest(), AliasAnalysis::UnknownSize,
278 MCI->getAlignment(), 0,
280 visitMemoryReference(I, MCI->getSource(), AliasAnalysis::UnknownSize,
281 MCI->getAlignment(), 0,
289 dyn_cast<ConstantInt>(findValue(MCI->getLength(),
293 Assert1(AA->alias(MCI->getSource(), Size, MCI->getDest(), Size) !=
/freebsd-10-stable/sys/arm/at91/
H A Dat91rm9200.c117 DEVICE("at91_mci", MCI, 0),
H A Dat91sam9260.c114 DEVICE("at91_mci", MCI, 0),
H A Dat91sam9g20.c115 DEVICE("at91_mci", MCI, 0),
/freebsd-10-stable/contrib/llvm/lib/Target/X86/
H A DX86FastISel.cpp1649 const MemCpyInst &MCI = cast<MemCpyInst>(I); local
1651 if (MCI.isVolatile())
1654 if (isa<ConstantInt>(MCI.getLength())) {
1657 uint64_t Len = cast<ConstantInt>(MCI.getLength())->getZExtValue();
1660 if (!X86SelectAddress(MCI.getRawDest(), DestAM) ||
1661 !X86SelectAddress(MCI.getRawSource(), SrcAM))
1669 if (!MCI.getLength()->getType()->isIntegerTy(SizeWidth))
1672 if (MCI.getSourceAddressSpace() > 255 || MCI.getDestAddressSpace() > 255)

Completed in 840 milliseconds