Home
last modified time | relevance | path

Searched refs:Ver (Results 1 – 25 of 49) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInfoStreamBuilder.cpp25 : Msf(Msf), Ver(PdbRaw_ImplVer::PdbImplVC70), Age(0), in InfoStreamBuilder()
30 void InfoStreamBuilder::setVersion(PdbRaw_ImplVer V) { Ver = V; } in setVersion()
67 H.Version = Ver; in commit()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUUnifyMetadata.cpp56 auto Ver = (VersionMajor * 100) + (VersionMinor * 10); in unifyVersionMD() local
57 if (Ver > MaxVer) { in unifyVersionMD()
58 MaxVer = Ver; in unifyVersionMD()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp59 const int Ver = OpenCLCPlusPlus ? OpenCLCPlusPlusVersion : OpenCLVersion; in getOpenCLVersionTuple() local
60 if (OpenCLCPlusPlus && Ver != 100) in getOpenCLVersionTuple()
61 return VersionTuple(Ver / 100); in getOpenCLVersionTuple()
62 return VersionTuple(Ver / 100, (Ver % 100) / 10); in getOpenCLVersionTuple()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DDirectiveNameParser.cpp26 for (unsigned Ver : getOpenMPVersions()) in DirectiveNameParser() local
27 insertName(getOpenMPDirectiveName(D, Ver), D); in DirectiveNameParser()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DPGOCtxProfReader.cpp204 SmallVector<uint64_t, 1> Ver; in readMetadata() local
205 EXPECT_OR_RET(Code, Cursor.readRecord(bitc::UNABBREV_RECORD, Ver)); in readMetadata()
208 if (Ver.size() != 1 || Ver[0] > PGOCtxProfileWriter::CurrentVersion) in readMetadata()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMinGW.cpp397 std::string &Ver, in findGccVersion() argument
411 Ver = std::string(VersionText); in findGccVersion()
414 return Ver.size(); in findGccVersion()
443 if (findGccVersion(LibDir, GccLibDir, Ver, GccVer)) { in findGccLibDir()
805 Ver); in AddClangCXXStdlibIncludeArgs()
807 llvm::sys::path::append(CppIncludeBases[2], "include", "c++", Ver); in AddClangCXXStdlibIncludeArgs()
H A DCuda.cpp158 for (const char *Ver : Versions) in CudaInstallationDetector() local
161 Ver); in CudaInstallationDetector()
186 for (const char *Ver : Versions) in CudaInstallationDetector() local
187 Candidates.emplace_back(D.SysRoot + "/usr/local/cuda-" + Ver); in CudaInstallationDetector()
H A DAMDGPU.cpp239 auto Ver = GetROCmVersion(FileName); in getInstallationPathCandidates() local
240 if (LatestVer < Ver) { in getInstallationPathCandidates()
242 LatestVer = Ver; in getInstallationPathCandidates()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DInfoStreamBuilder.h63 PdbRaw_ImplVer Ver; variable
/freebsd/contrib/ntp/scripts/calc_tickadj/
H A Dcalc_tickadj-opts42 calc_tickadj - Calculates "optimal" value for tick given ntp drift file. - Ver. 4.2.8p15
H A Dinvoke-calc_tickadj.texi66 calc_tickadj - Calculates "optimal" value for tick given ntp drift file. - Ver. 4.2.8p15
/freebsd/contrib/ntp/scripts/ntp-wait/
H A Dntp-wait-opts43 ntp-wait - Wait for ntpd to stabilize the system clock - Ver. 4.2.8p18
H A Dinvoke-ntp-wait.texi64 ntp-wait - Wait for ntpd to stabilize the system clock - Ver. 4.2.8p18
/freebsd/contrib/ntp/scripts/ntptrace/
H A Dntptrace-opts43 ntptrace - Trace peers of an NTP server - Ver. 4.2.8p18
/freebsd/contrib/ntp/scripts/ntpsweep/
H A Dntpsweep-opts46 ntpsweep - Print various informations about given ntp servers - Ver. 4.2.8p18
/freebsd/contrib/ntp/scripts/
H A Dplot_summary-opts49 plot_summary - plot statistics generated by summary script - Ver. 4.2.8p18
H A Dsummary-opts47 summary - compute various stastics from NTP stat files - Ver. 4.2.8p18
H A Dinvoke-summary.texi45 summary - compute various stastics from NTP stat files - Ver. 4.2.8p18
H A Dinvoke-plot_summary.texi44 plot_summary - plot statistics generated by summary script - Ver. 4.2.8p18
/freebsd/contrib/ntp/scripts/update-leap/
H A Dupdate-leap-opts49 update-leap - leap-seconds file manager/updater - Ver. 4.2.8p18
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSA.h380 unsigned Ver)
382 ID(Ver) {}
491 MemoryPhi(LLVMContext &C, BasicBlock *BB, unsigned Ver, unsigned NumPreds = 0)
492 : MemoryAccess(C, MemoryPhiVal, deleteMe, BB, AllocMarker), ID(Ver),
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp129 int Ver = 0; in initializeSubtargetDependencies() local
130 if (!HvxVer.drop_front(5).consumeInteger(10, Ver) && Ver >= 68) in initializeSubtargetDependencies()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPExpressions.cpp1022 std::optional<std::uint64_t> Ver = getStdLibCxxVersion(); in NeedsStdLibCxxWorkaroundBefore() local
1023 if (!Ver) in NeedsStdLibCxxWorkaroundBefore()
1025 return *Ver < FixedVersion; in NeedsStdLibCxxWorkaroundBefore()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DARM.cpp211 int Ver = getARMSubArchVersionNumber(Triple); in isHardTPSupported() local
215 (Ver >= 7 && !isARMMProfile(Triple)); in isHardTPSupported()
220 int Ver = arm::getARMSubArchVersionNumber(Triple); in supportsThumb2Encoding() local
223 (Ver >= 7 && AK != llvm::ARM::ArchKind::ARMV8MBaseline); in supportsThumb2Encoding()
/freebsd/contrib/file/magic/Magdir/
H A Dsgi13 >8 byte >0 Ver %d:

12