Home
last modified time | relevance | path

Searched refs:Version (Results 1 – 25 of 1188) sorted by relevance

12345678910>>...48

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/
DPackedVersion.h26 uint32_t Version{0};
30 explicit constexpr PackedVersion(uint32_t RawVersion) : Version(RawVersion) {} in PackedVersion()
32 : Version((Major << 16) | ((Minor & 0xff) << 8) | (Subminor & 0xff)) {} in PackedVersion()
34 bool empty() const { return Version == 0; } in empty()
37 unsigned getMajor() const { return Version >> 16; } in getMajor()
40 unsigned getMinor() const { return (Version >> 8) & 0xff; } in getMinor()
43 unsigned getSubminor() const { return Version & 0xff; } in getSubminor()
48 bool operator<(const PackedVersion &O) const { return Version < O.Version; }
50 bool operator==(const PackedVersion &O) const { return Version == O.Version; }
52 bool operator!=(const PackedVersion &O) const { return Version != O.Version; }
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TextAPI/
DPlatform.cpp109 std::string Version) { in getOSAndEnvironmentName() argument
112 return "darwin" + Version; in getOSAndEnvironmentName()
114 return "macos" + Version; in getOSAndEnvironmentName()
116 return "ios" + Version; in getOSAndEnvironmentName()
118 return "tvos" + Version; in getOSAndEnvironmentName()
120 return "watchos" + Version; in getOSAndEnvironmentName()
122 return "bridgeos" + Version; in getOSAndEnvironmentName()
124 return "ios" + Version + "-macabi"; in getOSAndEnvironmentName()
126 return "ios" + Version + "-simulator"; in getOSAndEnvironmentName()
128 return "tvos" + Version + "-simulator"; in getOSAndEnvironmentName()
[all …]
DPackedVersion.cpp24 Version = 0; in parse32()
42 Version = Num << 16; in parse32()
51 Version |= (Num << ShiftNum); in parse32()
59 Version = 0; in parse64()
81 Version = Num << 16; in parse64()
95 Version |= (Num << ShiftNum); in parse64()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
DDistro.cpp33 Distro::DistroType Version = Distro::UnknownDistro; in DetectOsRelease() local
37 if (Version == Distro::UnknownDistro && Line.startswith("ID=")) in DetectOsRelease()
38 Version = llvm::StringSwitch<Distro::DistroType>(Line.substr(3)) in DetectOsRelease()
48 return Version; in DetectOsRelease()
59 Distro::DistroType Version = Distro::UnknownDistro; in DetectLsbRelease() local
62 if (Version == Distro::UnknownDistro && in DetectLsbRelease()
64 Version = llvm::StringSwitch<Distro::DistroType>(Line.substr(17)) in DetectLsbRelease()
94 return Version; in DetectLsbRelease()
98 Distro::DistroType Version = Distro::UnknownDistro; in DetectDistro() local
102 Version = DetectOsRelease(VFS); in DetectDistro()
[all …]
/freebsd-12-stable/sys/netinet/libalias/
DHISTORY3 Version 1.0: August 11, 1996 (cjm)
5 Version 1.1: August 20, 1996 (cjm)
8 Version 1.2: September 7, 1996 (cjm)
11 Version 1.3: September 15, 1996 (cjm)
19 Version 1.4: September 16, 1996 (cjm)
21 Version 1.5: September 17, 1996 (cjm)
25 Version 1.6: September 18, 1996
31 Version 1.7: January 9, 1997 (cjm)
50 Version 1.8: January 14, 1997 (cjm)
55 Version 1.9: February 1, 1997 (Eivind Eklund <perhaps@yes.no>)
[all …]
/freebsd-12-stable/sbin/natd/
DHISTORY1 * Version 0.1
5 * Version 0.2
15 * Version 1.0
19 * Version 1.1
26 * Version 1.2
32 * Version 1.3
42 * Version 1.4
76 * Version 1.5
83 * Version 1.6
92 * Version 1.7
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUBaseInfo.cpp417 auto Version = getIsaVersion(STI.getCPU()); in toString() local
428 if (Version.Major >= 9) in toString()
431 Processor = (Twine("gfx") + Twine(Version.Major) + Twine(Version.Minor) + in toString()
432 Twine(Version.Stepping)) in toString()
592 IsaVersion Version = getIsaVersion(STI->getCPU()); in getSGPRAllocGranule() local
593 if (Version.Major >= 10) in getSGPRAllocGranule()
595 if (Version.Major >= 8) in getSGPRAllocGranule()
605 IsaVersion Version = getIsaVersion(STI->getCPU()); in getTotalNumSGPRs() local
606 if (Version.Major >= 8) in getTotalNumSGPRs()
615 IsaVersion Version = getIsaVersion(STI->getCPU()); in getAddressableNumSGPRs() local
[all …]
DAMDGPUBaseInfo.h509 unsigned getVmcntBitMask(const IsaVersion &Version);
512 unsigned getExpcntBitMask(const IsaVersion &Version);
515 unsigned getLgkmcntBitMask(const IsaVersion &Version);
518 unsigned getWaitcntBitMask(const IsaVersion &Version);
521 unsigned decodeVmcnt(const IsaVersion &Version, unsigned Waitcnt);
524 unsigned decodeExpcnt(const IsaVersion &Version, unsigned Waitcnt);
527 unsigned decodeLgkmcnt(const IsaVersion &Version, unsigned Waitcnt);
539 void decodeWaitcnt(const IsaVersion &Version, unsigned Waitcnt,
542 Waitcnt decodeWaitcnt(const IsaVersion &Version, unsigned Encoded);
545 unsigned encodeVmcnt(const IsaVersion &Version, unsigned Waitcnt,
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DAvailability.h34 VersionTuple Version; variable
42 AvailabilitySpec(VersionTuple Version, StringRef Platform, in AvailabilitySpec() argument
44 : Version(Version), Platform(Platform), BeginLoc(BeginLoc), in AvailabilitySpec()
51 VersionTuple getVersion() const { return Version; } in getVersion()
57 bool isOtherPlatformSpec() const { return Version.empty(); } in isOtherPlatformSpec()
/freebsd-12-stable/contrib/file/magic/Magdir/
Dkicad17 >>>>20 regex [0-9.]+ (Version %s)
25 >>>>24 string Version
27 >>>>>>32 string x (Version %s)
35 >>>>27 regex [0-9.]+ (Version %s)
41 >>17 string Version
43 >>>>25 string x (Version %s)
49 >>17 string Version
51 >>>>25 string x (Version %s)
59 >>>>20 regex [0-9.]+ (Version %s)
Dsql12 >2 byte x Version %d
44 >3 byte x Version %d
46 >3 byte x Version %d
48 >3 byte x Version %d
55 >3 byte x Version %d
57 >3 byte x Version %d
59 >3 byte x Version %d
62 >>3 byte x Version %d
73 >>3 byte x Version %d
81 >11 string >\0 Version %s
[all …]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/
Dxray_interface_internal.h30 unsigned char Version; member
33 if (Version < 2) in function()
39 if (Version < 2) in address()
49 unsigned char Version;
52 if (Version < 2)
58 if (Version < 2)
/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/utf8proc/
DNEWS.md3 ## Version 2.1 ##
21 ## Version 2.0.2 ##
33 ## Version 2.0.1 ##
42 ## Version 2.0 ##
60 ## Version 1.3.1 ##
72 ## Version 1.3 ##
99 ## Version 1.2 ##
138 ## Version 1.1.6 ##
144 ## Version 1.1.5 ##
162 ## Version 1.1.4 ##
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
DObjCRuntime.cpp63 Version = VersionTuple(0); in tryParse()
75 Version = VersionTuple(1, 6); in tryParse()
81 Version = VersionTuple(0, 8); in tryParse()
89 if (Version.tryParse(verString)) in tryParse()
93 if (kind == ObjCRuntime::ObjFW && Version > VersionTuple(0, 8)) in tryParse()
94 Version = VersionTuple(0, 8); in tryParse()
DCuda.cpp202 CudaVersion ToCudaVersion(llvm::VersionTuple Version) { in ToCudaVersion() argument
204 Version.getMajor() * 10 + Version.getMinor().getValueOr(0); in ToCudaVersion()
235 bool CudaFeatureEnabled(llvm::VersionTuple Version, CudaFeature Feature) { in CudaFeatureEnabled() argument
236 return CudaFeatureEnabled(ToCudaVersion(Version), Feature); in CudaFeatureEnabled()
239 bool CudaFeatureEnabled(CudaVersion Version, CudaFeature Feature) { in CudaFeatureEnabled() argument
242 return Version >= CudaVersion::CUDA_92; in CudaFeatureEnabled()
244 return Version >= CudaVersion::CUDA_101; in CudaFeatureEnabled()
DDarwinSDKInfo.cpp69 VersionTuple Version; in getVersionKey() local
70 if (Version.tryParse(*Value)) in getVersionKey()
72 return Version; in getVersionKey()
77 auto Version = getVersionKey(*Obj, "Version"); in parseDarwinSDKSettingsJSON() local
78 if (!Version) in parseDarwinSDKSettingsJSON()
105 return DarwinSDKInfo(std::move(*Version), in parseDarwinSDKSettingsJSON()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
DCoverageMappingReader.cpp101 Error RawCoverageFilenamesReader::read(CovMapVersion Version) { in read() argument
108 if (Version < CovMapVersion::Version4) in read()
109 return readUncompressed(Version, NumFilenames); in read()
143 return Delegate.readUncompressed(Version, NumFilenames); in read()
146 return readUncompressed(Version, NumFilenames); in read()
149 Error RawCoverageFilenamesReader::readUncompressed(CovMapVersion Version, in readUncompressed() argument
152 if (Version < CovMapVersion::Version6) { in readUncompressed()
527 get(CovMapVersion Version, InstrProfSymtab &P,
533 template <CovMapVersion Version, class IntPtrT, support::endianness Endian>
536 typename CovMapTraits<Version, IntPtrT>::CovMapFuncRecordType;
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/XRay/
DTrace.cpp181 (FileHeader.Version >= 3 ? Record.PId != PId : false)) in loadNaiveFormatLog()
336 TraceExpander Expander(Adder, FileHeader.Version); in loadFDRLog()
358 FileHeader.Version = Trace.Header.Version; in loadYAMLLog()
364 if (FileHeader.Version != 1) in loadYAMLLog()
366 Twine("Unsupported XRay file version: ") + Twine(FileHeader.Version), in loadYAMLLog()
436 uint16_t Version = HeaderExtractor.getU16(&OffsetPtr); in loadTrace() local
444 if (Version == 1 || Version == 2 || Version == 3) { in loadTrace()
451 Twine(Version), in loadTrace()
456 if (Version >= 1 && Version <= 5) { in loadTrace()
462 Twine("Unsupported version for FDR Mode logging: ") + Twine(Version), in loadTrace()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
DHeader.cpp26 OS << " Version = " << HEX16(H.Version) << '\n'; in operator <<()
45 if (Version != GSYM_VERSION) in checkForError()
47 "unsupported GSYM version %u", Version); in checkForError()
72 H.Version = Data.getU16(&Offset); in decode()
90 O.writeU16(Version); in encode()
102 return LHS.Magic == RHS.Magic && LHS.Version == RHS.Version && in operator ==()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/wasm/
DWriter.cpp63 uint32_t Version; in write() local
64 support::endian::write32le(&Version, Obj.Header.Version); in write()
65 Out.write(reinterpret_cast<const char *>(&Version), sizeof(Version)); in write()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
DPDBSymbolCompilandDetails.h25 void getFrontEndVersion(VersionInfo &Version) const { in getFrontEndVersion() argument
26 RawSymbol->getFrontEndVersion(Version); in getFrontEndVersion()
29 void getBackEndVersion(VersionInfo &Version) const { in getBackEndVersion() argument
30 RawSymbol->getBackEndVersion(Version); in getBackEndVersion()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DWP/
DDWP.cpp54 StringRef StrOffsets, StringRef Str, uint16_t Version) { in getIndexedString() argument
83 StrOffsetsOffset += debugStrOffsetsHeaderSize(StrOffsetsData, Version); in getIndexedString()
95 if (Header.Version >= 5 && Header.UnitType != dwarf::DW_UT_split_compile) in getCUIdentifiers()
120 Form, InfoData, Offset, StrOffsets, Str, Header.Version); in getCUIdentifiers()
129 Form, InfoData, Offset, StrOffsets, Str, Header.Version); in getCUIdentifiers()
141 dwarf::FormParams({Header.Version, Header.AddrSize, Header.Format})); in getCUIdentifiers()
312 Header.Version = InfoData.getU16(&Offset, &Err); in parseInfoSectionUnitHeader()
318 if (Header.Version >= 5) { in parseInfoSectionUnitHeader()
331 if (Header.Version >= 5) { in parseInfoSectionUnitHeader()
357 StringRef CurStrOffsetSection, uint16_t Version) { in writeStringsAndOffsets() argument
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeRawSymbol.cpp119 void NativeRawSymbol::getBackEndVersion(VersionInfo &Version) const { in getBackEndVersion()
120 Version.Major = 0; in getBackEndVersion()
121 Version.Minor = 0; in getBackEndVersion()
122 Version.Build = 0; in getBackEndVersion()
123 Version.QFE = 0; in getBackEndVersion()
162 void NativeRawSymbol::getFrontEndVersion(VersionInfo &Version) const { in getFrontEndVersion()
163 Version.Major = 0; in getFrontEndVersion()
164 Version.Minor = 0; in getFrontEndVersion()
165 Version.Build = 0; in getFrontEndVersion()
166 Version.QFE = 0; in getFrontEndVersion()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DDarwinSDKInfo.h105 DarwinSDKInfo(VersionTuple Version, VersionTuple MaximumDeploymentTarget,
111 : Version(Version), MaximumDeploymentTarget(MaximumDeploymentTarget), in Version() function
114 const llvm::VersionTuple &getVersion() const { return Version; } in getVersion()
139 VersionTuple Version;
/freebsd-12-stable/sys/contrib/libsodium/
DChangeLog2 * Version 1.0.16
27 * Version 1.0.15
44 * Version 1.0.14
91 * Version 1.0.13
96 - Version 1.0.12 didn't compile on OpenBSD/i386 using the base gcc
113 * Version 1.0.12
152 * Version 1.0.11
176 * Version 1.0.10
180 * Version 1.0.9
206 * Version 1.0.8
[all …]

12345678910>>...48