Home
last modified time | relevance | path

Searched refs:Minor (Results 1 - 25 of 39) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DVersionTuple.h29 unsigned Minor : 31;
40 : Major(0), Minor(0), HasMinor(false), Subminor(0), HasSubminor(false), in VersionTuple()
44 : Major(Major), Minor(0), HasMinor(false), Subminor(0), in VersionTuple()
47 explicit VersionTuple(unsigned Major, unsigned Minor) in VersionTuple() argument
48 : Major(Major), Minor(Minor), HasMinor(true), Subminor(0), in VersionTuple()
51 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor) in VersionTuple() argument
52 : Major(Major), Minor(Minor), HasMinor(true), Subminor(Subminor), in VersionTuple()
55 explicit VersionTuple(unsigned Major, unsigned Minor, unsigne argument
[all...]
H A DTargetParser.h138 unsigned Minor; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.h45 uint32_t Minor) = 0;
47 virtual void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
103 uint32_t Minor) override;
105 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
150 uint32_t Minor) override;
152 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
H A DAMDGPUTargetStreamer.cpp178 uint32_t Major, uint32_t Minor) { in EmitDirectiveHSACodeObjectVersion()
180 Twine(Major) << "," << Twine(Minor) << '\n'; in EmitDirectiveHSACodeObjectVersion()
185 uint32_t Minor, in EmitDirectiveHSACodeObjectISA()
190 Twine(Major) << "," << Twine(Minor) << "," << Twine(Stepping) << in EmitDirectiveHSACodeObjectISA()
457 uint32_t Major, uint32_t Minor) { in EmitDirectiveHSACodeObjectVersion()
462 OS.EmitIntValue(Minor, 4); in EmitDirectiveHSACodeObjectVersion()
468 uint32_t Minor, in EmitDirectiveHSACodeObjectISA()
476 sizeof(Major) + sizeof(Minor) + sizeof(Stepping) + in EmitDirectiveHSACodeObjectISA()
484 OS.EmitIntValue(Minor, 4); in EmitDirectiveHSACodeObjectISA()
177 EmitDirectiveHSACodeObjectVersion( uint32_t Major, uint32_t Minor) EmitDirectiveHSACodeObjectVersion() argument
184 EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor, uint32_t Stepping, StringRef VendorName, StringRef ArchName) EmitDirectiveHSACodeObjectISA() argument
456 EmitDirectiveHSACodeObjectVersion( uint32_t Major, uint32_t Minor) EmitDirectiveHSACodeObjectVersion() argument
467 EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor, uint32_t Stepping, StringRef VendorName, StringRef ArchName) EmitDirectiveHSACodeObjectISA() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DTriple.h323 void getEnvironmentVersion(unsigned &Major, unsigned &Minor,
335 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
349 bool getMacOSXVersion(unsigned &Major, unsigned &Minor,
354 void getiOSVersion(unsigned &Major, unsigned &Minor,
359 void getWatchOSVersion(unsigned &Major, unsigned &Minor,
415 bool isOSVersionLT(unsigned Major, unsigned Minor = 0, in isOSVersionLT()
422 if (LHS[1] != Minor) in isOSVersionLT()
423 return LHS[1] < Minor; in isOSVersionLT()
439 bool isMacOSXVersionLT(unsigned Major, unsigned Minor = 0, in isMacOSXVersionLT()
445 return isOSVersionLT(Major, Minor, Micr in isMacOSXVersionLT()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp461 bool parseMajorMinorVersionComponent(unsigned *Major, unsigned *Minor,
465 bool parseVersion(unsigned *Major, unsigned *Minor, unsigned *Update);
1013 unsigned *Minor, in parseMajorMinorVersionComponent()
1035 *Minor = MinorVal; in parseMajorMinorVersionComponent()
1058 bool DarwinAsmParser::parseVersion(unsigned *Major, unsigned *Minor, in parseVersion() argument
1060 if (parseMajorMinorVersionComponent(Major, Minor, "OS")) in parseVersion()
1078 unsigned Major, Minor; in parseSDKVersion() local
1079 if (parseMajorMinorVersionComponent(&Major, &Minor, "SDK")) in parseSDKVersion()
1081 SDKVersion = VersionTuple(Major, Minor); in parseSDKVersion()
1088 SDKVersion = VersionTuple(Major, Minor, Submino in parseSDKVersion()
1012 parseMajorMinorVersionComponent(unsigned *Major, unsigned *Minor, const char *VersionName) parseMajorMinorVersionComponent() argument
1126 unsigned Minor; parseVersionMin() local
1182 unsigned Minor; parseBuildVersion() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCAssembler.h95 unsigned Minor; member in llvm::MCAssembler
256 void setVersionMin(MCVersionMinType Type, unsigned Major, unsigned Minor, in setVersionMin() argument
262 VersionInfo.Minor = Minor; in setVersionMin()
267 unsigned Minor, unsigned Update, in setBuildVersion()
272 VersionInfo.Minor = Minor; in setBuildVersion()
266 setBuildVersion(MachO::PlatformType Platform, unsigned Major, unsigned Minor, unsigned Update, VersionTuple SDKVersion = VersionTuple()) setBuildVersion() argument
/third_party/skia/third_party/externals/swiftshader/tests/regres/llvm/
H A Dllvm.go39 Major, Minor, Point int
43 return fmt.Sprintf("%v.%v.%v", v.Major, v.Minor, v.Point)
54 if v.Minor > rhs.Minor {
57 if v.Minor < rhs.Minor {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/
H A DPackedVersion.h28 PackedVersion(unsigned Major, unsigned Minor, unsigned Subminor) in PackedVersion() argument
29 : Version((Major << 16) | ((Minor & 0xff) << 8) | (Subminor & 0xff)) {} in PackedVersion()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCMachOStreamer.cpp91 void EmitVersionMin(MCVersionMinType Kind, unsigned Major, unsigned Minor,
93 void EmitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor,
272 unsigned Minor, unsigned Update, in EmitVersionMin()
274 getAssembler().setVersionMin(Kind, Major, Minor, Update, SDKVersion); in EmitVersionMin()
278 unsigned Minor, unsigned Update, in EmitBuildVersion()
280 getAssembler().setBuildVersion((MachO::PlatformType)Platform, Major, Minor, in EmitBuildVersion()
271 EmitVersionMin(MCVersionMinType Kind, unsigned Major, unsigned Minor, unsigned Update, VersionTuple SDKVersion) EmitVersionMin() argument
277 EmitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor, unsigned Update, VersionTuple SDKVersion) EmitBuildVersion() argument
H A DMCStreamer.cpp1138 unsigned Minor; in EmitVersionForTarget() local
1142 Target.getiOSVersion(Major, Minor, Update); in EmitVersionForTarget()
1144 EmitBuildVersion(MachO::PLATFORM_MACCATALYST, Major, Minor, Update, in EmitVersionForTarget()
1152 Target.getWatchOSVersion(Major, Minor, Update); in EmitVersionForTarget()
1155 Target.getiOSVersion(Major, Minor, Update); in EmitVersionForTarget()
1158 if (!Target.getMacOSXVersion(Major, Minor, Update)) in EmitVersionForTarget()
1162 Target.getiOSVersion(Major, Minor, Update); in EmitVersionForTarget()
1165 EmitVersionMin(VersionType, Major, Minor, Update, SDKVersion); in EmitVersionForTarget()
H A DMCAsmStreamer.cpp149 void EmitVersionMin(MCVersionMinType Kind, unsigned Major, unsigned Minor,
151 void EmitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor,
544 if (auto Minor = SDKVersion.getMinor()) { in EmitSDKVersionSuffix()
545 OS << ", " << *Minor; in EmitSDKVersionSuffix() local
553 unsigned Minor, unsigned Update, in EmitVersionMin()
555 OS << '\t' << getVersionMinDirective(Type) << ' ' << Major << ", " << Minor; in EmitVersionMin() local
578 unsigned Minor, unsigned Update, in EmitBuildVersion()
581 OS << "\t.build_version " << PlatformName << ", " << Major << ", " << Minor; in EmitBuildVersion() local
552 EmitVersionMin(MCVersionMinType Type, unsigned Major, unsigned Minor, unsigned Update, VersionTuple SDKVersion) EmitVersionMin() argument
577 EmitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor, unsigned Update, VersionTuple SDKVersion) EmitBuildVersion() argument
H A DMachObjectWriter.cpp869 unsigned Minor = V.getMinor() ? *V.getMinor() : 0; in writeObject()
871 assert(Minor < 256 && "unencodable minor target version"); in writeObject()
873 return Update | (Minor << 8) | (V.getMajor() << 16); in writeObject()
876 VersionTuple(VersionInfo.Major, VersionInfo.Minor, VersionInfo.Update)); in writeObject()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DVersionTuple.cpp29 if (Optional<unsigned> Minor = V.getMinor()) in operator <<()
30 Out << '.' << *Minor; in operator <<() local
H A DTriple.cpp1036 unsigned &Minor, unsigned &Micro) {
1038 Major = Minor = Micro = 0;
1041 unsigned *Components[3] = {&Major, &Minor, &Micro};
1055 void Triple::getEnvironmentVersion(unsigned &Major, unsigned &Minor,
1062 parseVersionFromName(EnvironmentName, Major, Minor, Micro);
1065 void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
1075 parseVersionFromName(OSName, Major, Minor, Micro);
1078 bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor,
1080 getOSVersion(Major, Minor, Micro);
1092 Minor
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DModule.cpp578 if (auto Minor = V.getMinor()) {
579 Entries.push_back(*Minor);
605 if (auto Minor = getVersionComponent(1)) {
606 Result = VersionTuple(*Major, *Minor);
608 Result = VersionTuple(*Major, *Minor, *Subminor);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DCOFFModuleDefinition.cpp338 Error parseVersion(uint32_t *Major, uint32_t *Minor) { in parseVersion() argument
347 *Minor = 0; in parseVersion()
348 else if (V2.getAsInteger(10, *Minor)) in parseVersion()
/third_party/skia/third_party/externals/oboe/include/oboe/
H A DVersion.h71 static constexpr uint8_t Minor = OBOE_VERSION_MINOR; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.cpp286 unsigned Major, Minor, Micro; in supportsAddressTopByteIgnored() local
287 TargetTriple.getiOSVersion(Major, Minor, Micro); in supportsAddressTopByteIgnored()
/third_party/ffmpeg/libavfilter/
H A Dqsvvpp.h41 (MFX_VERSION.Major == (MAJOR) && MFX_VERSION.Minor >= (MINOR)))
/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zHeader.h27 Byte Minor; member
/third_party/ffmpeg/libavcodec/
H A Dqsv_internal.h66 (MFX_VERSION.Major == (MAJOR) && MFX_VERSION.Minor >= (MINOR)))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.h54 void setBuildNumber(uint8_t Major, uint8_t Minor);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp40 void DbiStreamBuilder::setBuildNumber(uint8_t Major, uint8_t Minor) { in setBuildNumber() argument
43 BuildNumber |= (uint16_t(Minor) << DbiBuildNo::BuildMinorShift) & in setBuildNumber()
H A DNativeRawSymbol.cpp121 Version.Minor = 0; in getBackEndVersion()
164 Version.Minor = 0; in getFrontEndVersion()

Completed in 22 milliseconds

12