| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | InfoStreamBuilder.cpp | 25 : 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 D | AMDGPUUnifyMetadata.cpp | 56 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 D | LangOptions.cpp | 59 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 D | DirectiveNameParser.cpp | 26 for (unsigned Ver : getOpenMPVersions()) in DirectiveNameParser() local 27 insertName(getOpenMPDirectiveName(D, Ver), D); in DirectiveNameParser()
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | PGOCtxProfReader.cpp | 204 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 D | MinGW.cpp | 397 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 D | Cuda.cpp | 158 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 D | AMDGPU.cpp | 239 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 D | InfoStreamBuilder.h | 63 PdbRaw_ImplVer Ver; variable
|
| /freebsd/contrib/ntp/scripts/calc_tickadj/ |
| H A D | calc_tickadj-opts | 42 calc_tickadj - Calculates "optimal" value for tick given ntp drift file. - Ver. 4.2.8p15
|
| H A D | invoke-calc_tickadj.texi | 66 calc_tickadj - Calculates "optimal" value for tick given ntp drift file. - Ver. 4.2.8p15
|
| /freebsd/contrib/ntp/scripts/ntp-wait/ |
| H A D | ntp-wait-opts | 43 ntp-wait - Wait for ntpd to stabilize the system clock - Ver. 4.2.8p18
|
| H A D | invoke-ntp-wait.texi | 64 ntp-wait - Wait for ntpd to stabilize the system clock - Ver. 4.2.8p18
|
| /freebsd/contrib/ntp/scripts/ntptrace/ |
| H A D | ntptrace-opts | 43 ntptrace - Trace peers of an NTP server - Ver. 4.2.8p18
|
| /freebsd/contrib/ntp/scripts/ntpsweep/ |
| H A D | ntpsweep-opts | 46 ntpsweep - Print various informations about given ntp servers - Ver. 4.2.8p18
|
| /freebsd/contrib/ntp/scripts/ |
| H A D | plot_summary-opts | 49 plot_summary - plot statistics generated by summary script - Ver. 4.2.8p18
|
| H A D | summary-opts | 47 summary - compute various stastics from NTP stat files - Ver. 4.2.8p18
|
| H A D | invoke-summary.texi | 45 summary - compute various stastics from NTP stat files - Ver. 4.2.8p18
|
| H A D | invoke-plot_summary.texi | 44 plot_summary - plot statistics generated by summary script - Ver. 4.2.8p18
|
| /freebsd/contrib/ntp/scripts/update-leap/ |
| H A D | update-leap-opts | 49 update-leap - leap-seconds file manager/updater - Ver. 4.2.8p18
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 380 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 D | HexagonSubtarget.cpp | 129 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 D | PPExpressions.cpp | 1022 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 D | ARM.cpp | 211 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 D | sgi | 13 >8 byte >0 Ver %d:
|