Searched refs:VC (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-11-stable/crypto/openssl/util/
H A Ddo_ms.sh8 # perl util/mk1mf.pl no-sock VC-MSDOS >ms/msdos.mak
9 # perl util/mk1mf.pl VC-W31-32 >ms/w31.mak
10 perl util/mk1mf.pl dll VC-WIN16 >ms/w31dll.mak
11 # perl util/mk1mf.pl VC-WIN32 >ms/nt.mak
12 perl util/mk1mf.pl dll VC-WIN32 >ms/ntdll.mak
H A Dmk1mf.pl76 "VC-WIN32", "Microsoft Visual C++ [4-6] - Windows NT or 9X",
77 "VC-WIN64I", "Microsoft C/C++ - Win64/IA-64",
78 "VC-WIN64A", "Microsoft C/C++ - Win64/x64",
79 "VC-CE", "Microsoft eMbedded Visual C++ 3.0 - Windows CE ONLY",
80 "VC-NT", "Microsoft Visual C++ [4-6] - Windows NT ONLY",
189 if (($platform =~ /VC-(.+)/))
193 require 'VC-32.pl';
751 if (($platform eq "VC-WIN32") || ($platform eq "VC-WIN64A")
752 || ($platform eq "VC
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/
H A DARCInfo.h33 VC = 0x8, enumerator in enum:llvm::ARCCC::CondCode
H A DARCInstPrinter.cpp74 case ARCCC::VC:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h38 VC, // No overflow Not unordered enumerator in enum:llvm::ARMCC::CondCodes
57 case VS: return VC;
58 case VC: return VS;
155 case ARMCC::VC: return "vc";
178 .Case("vc", ARMCC::VC)
/freebsd-11-stable/sys/dev/en/
H A Dmidwayreg.h147 #define MIDV_TRASH 0x00000000 /* ignore VC */
151 #define MIDV_SETMODE(VC,M) (((VC) & ~(MIDV_MASK)) | (M)) /* new mode */
196 #define MID_MK_RXQ_ENI(CNT, VC, END, TYPE) \
197 (((CNT) << 16) | ((VC) << 6) | (END) | (TYPE))
199 #define MID_MK_RXQ_ADP(CNT, VC, END, JK) \
200 (((CNT) << 12) | ((VC) << 2) | ((END) >> 4) | (((JK) != 0) ? 1 : 0))
H A Dmidway.c104 DBG_VC = 0x0010, /* debug VC handling */
1159 DBG(sc, VC, ("rx%td: assigned to VCI %d", vc->rxslot - sc->rxslot,
1244 DBG(sc, VC, ("vci: %u free (%p)", vc->vcc.vci, vc));
2901 cv_init(&sc->cv_close, "VC close");
2981 * ensure that there is always one VC slot on the service list free
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h1582 if (auto *VC = dyn_cast<Constant>(V))
1583 return Insert(Folder.CreateNeg(VC, HasNUW, HasNSW), Name);
1600 if (auto *VC = dyn_cast<Constant>(V))
1601 return Insert(Folder.CreateFNeg(VC), Name);
1610 if (auto *VC = dyn_cast<Constant>(V))
1611 return Insert(Folder.CreateFNeg(VC), Name);
1618 if (auto *VC = dyn_cast<Constant>(V))
1619 return Insert(Folder.CreateNot(VC), Name);
1626 if (auto *VC = dyn_cast<Constant>(V))
1627 return Insert(Folder.CreateUnOp(Opc, VC), Nam
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprClassification.cpp660 Classification VC = Classify(Ctx); local
661 switch (VC.getKind()) {
681 Classification VC = ClassifyModifiable(Ctx, Loc ? *Loc : dummy); local
682 switch (VC.getKind()) {
695 return VC.getModifiable() == Cl::CM_LValueCast ?
698 assert(VC.getKind() == Cl::CL_LValue && "Unhandled kind");
699 switch (VC.getModifiable()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1848 for (const FunctionSummary::ConstVCall &VC :
1850 for (Metadata *MD : MetadataByGUID[VC.VFunc.GUID]) {
1851 CallSlots[{MD, VC.VFunc.Offset}]
1852 .ConstCSInfo[VC.Args]
1856 for (const FunctionSummary::ConstVCall &VC :
1858 for (Metadata *MD : MetadataByGUID[VC.VFunc.GUID]) {
1859 CallSlots[{MD, VC.VFunc.Offset}]
1860 .ConstCSInfo[VC.Args]
1969 for (const FunctionSummary::ConstVCall &VC :
1971 for (StringRef Name : NameByGUID[VC
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1488 for (unsigned VC = 0; VC != VariantCount; ++VC) {
1489 Record *AsmVariant = Target.getAsmParserVariant(VC);
2809 for (unsigned VC = 0; VC != VariantCount; ++VC) {
2810 Record *AsmVariant = Target.getAsmParserVariant(VC);
3058 for (unsigned VC = 0; VC !
[all...]
H A DSubtargetEmitter.cpp1575 for (unsigned VC : VariantClasses) {
1577 const CodeGenSchedClass &SC = SchedModels.getSchedClass(VC);
1580 OS << " case " << VC << ": // " << SC.Name << '\n';
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph.cpp378 StatType VT, StatType VC) {
407 if (VC != StatType::NONE)
410 std::sqrt(VA.S.getDouble(VC) / G.GraphVertexMax.getDouble(VC)))
377 exportGraphAsDOT(raw_ostream &OS, StatType ET, StatType EC, StatType VT, StatType VC) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h243 VC = 0x7, // No overflow Not unordered enumerator in enum:llvm::AArch64CC::CondCode
272 case VC: return "vc";
306 case VC: return 0; // V == 0
/freebsd-11-stable/sys/dev/patm/
H A Didt77252reg.h102 #define IDT_MKCMD_OPEN(VC) (IDT_CMD_OPCL | (1 << 19) | ((V) << 4))
103 #define IDT_MKCMD_CLOSE(VC) (IDT_CMD_OPCL | (0 << 19) | ((V) << 4))
441 16, 512, 9, IDT_CFG_CTS512, /* RAM, connections, VC bits */ \
450 32, 1024, 10, IDT_CFG_CTS1K, /* RAM, connections, VC bits */ \
459 128, 4096, 12, IDT_CFG_CTS4K, /* RAM, connections, VC bits */ \
468 512, 16384, 14, IDT_CFG_CTS16K, /* RAM, connections, VC bits */\
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.cpp119 return ARCCC::VC;
120 case ARCCC::VC:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp586 const TargetRegisterClass *VC = MRI->getRegClass(RS.Reg); local
587 assert(VC->begin() != VC->end() && "Empty register class");
588 PhysR = *VC->begin();
H A DBitTracker.cpp339 const auto &VC = composeWithSubRegIndex(*MRI.getRegClass(RR.Reg), RR.Sub);
340 return TRI.getRegSizeInBits(VC);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h582 const OptionValueCopy<DataType> &VC = variable
584 if (!VC.hasValue())
586 return compare(VC.getValue());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp575 if (Constant *VC = dyn_cast<Constant>(Val))
576 return ValueLatticeElement::get(VC);
1512 if (Constant *VC = dyn_cast<Constant>(Val)) {
1513 Result = ValueLatticeElement::get(VC);
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dppc-opc.c486 /* The VC field in a VA form instruction. */
487 #define VC VB + 1
491 #define VD VC + 1
1893 { "vmaddfp", VXA(4, 46), VXA_MASK, PPCVEC, { VD, VA, VC, VB } },
1901 { "vmhaddshs", VXA(4, 32), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
1902 { "vmhraddshs", VXA(4, 33), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
1910 { "vmladduhm", VXA(4, 34), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
1917 { "vmsummbm", VXA(4, 37), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
1918 { "vmsumshm", VXA(4, 40), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
1919 { "vmsumshs", VXA(4, 41), VXA_MASK, PPCVEC, { VD, VA, VB, VC } },
485 #define VC macro
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3542 for (auto &VC : VCs) {
3544 Record.push_back(VC.VFunc.GUID);
3545 Record.push_back(VC.VFunc.Offset);
3546 Record.insert(Record.end(), VC.Args.begin(), VC.Args.end());
3576 for (auto &VC : VCs)
3577 ReferencedTypeIds.insert(VC.VFunc.GUID);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp8500 ValueContext VC;
8501 VC.Loc = Lex.getLoc();
8502 if (ParseGVReference(VC.VI, VC.GVId))
8504 VContexts.push_back(VC);
8515 for (auto &VC : VContexts) {
8519 if (VC.VI.getRef() == FwdVIRef)
8520 IdToIndexMap[VC.GVId].push_back(std::make_pair(Refs.size(), VC.Loc));
8521 Refs.push_back(VC
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstructionSelector.cpp427 Preds.first = ARMCC::VC;
H A DARMBaseInstrInfo.cpp2735 case ARMCC::VC: return ARMCC::VC;
3117 case ARMCC::VC: // V

Completed in 705 milliseconds

12