HomeSort by relevance Sort by last modified time
    Searched defs:Minor (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.h 29 unsigned Minor;
  /external/llvm/unittests/ADT/
TripleTest.cpp 714 unsigned Major, Minor, Micro;
722 T.getMacOSXVersion(Major, Minor, Micro);
724 EXPECT_EQ((unsigned)5, Minor);
726 T.getiOSVersion(Major, Minor, Micro);
728 EXPECT_EQ((unsigned)0, Minor);
737 T.getMacOSXVersion(Major, Minor, Micro);
739 EXPECT_EQ((unsigned)5, Minor);
741 T.getiOSVersion(Major, Minor, Micro);
743 EXPECT_EQ((unsigned)0, Minor);
752 T.getMacOSXVersion(Major, Minor, Micro)
    [all...]
  /external/tcpdump/
nfsfh.h 47 uint32_t Minor; /* upper case to avoid clashing with macro names */
51 #define dev_eq(a,b) ((a.Minor == b.Minor) && (a.Major == b.Major))
  /external/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp 161 unsigned Major, Minor, Micro;
162 TargetTriple.getiOSVersion(Major, Minor, Micro);
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
TcgService.h 28 UINT8 Minor;
Bis.h 63 UINT32 Minor; ///< A minor BIS version number.
135 On output, both the major and minor
136 version numbers are updated with the major and minor version
Tcg2Protocol.h 29 UINT8 Minor;
47 // and the Minor version shall be set to 1.
53 // and the Minor version shall be set to 1.
TrEEProtocol.h 28 UINT8 Minor;
44 // and the Minor version shall be set to 0.
50 // and the Minor version shall be set to 0.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndkinfo.h 22 USHORT Minor;
cor.h 207 short Minor;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Bis/
Bis.h 49 UINT32 Minor; // Build number.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/TcgService/
TcgService.h 57 UINT8 Minor;
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 164 unsigned Major, Minor, Micro;
165 triple.getOSVersion(Major, Minor, Micro);
166 return Major > 10 || (Major == 10 && Minor >= 7);
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 80 unsigned Minor, unsigned Update) override;
276 unsigned Minor, unsigned Update) {
277 getAssembler().setVersionMinInfo(Kind, Major, Minor, Update);
505 unsigned Major, Minor, Update;
506 TT.getOSVersion(Major, Minor, Update);
520 S->EmitVersionMin(VersionType, Major, Minor, Update);
MCAsmStreamer.cpp 137 void EmitVersionMin(MCVersionMinType Kind, unsigned Major, unsigned Minor,
448 unsigned Minor, unsigned Update) {
455 OS << " " << Major << ", " << Minor;
    [all...]
  /external/llvm/tools/llvm-pdbdump/
LLVMOutputStyle.cpp 450 uint16_t Minor = DS->getBuildMinorVersion();
451 P.printVersion("Toolchain Version", Major, Minor);
455 DllStream << "mspdb" << Major << Minor << ".dll version";
457 P.printVersion(DllName, Major, Minor, DS->getPdbDllVersion());
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.h 27 Byte Minor;
  /external/spirv-llvm/lib/SPIRV/
OCLUtil.cpp 182 unsigned char Minor, unsigned char Rev) {
183 return (Major * 100 + Minor) * 1000 + Rev;
189 unsigned char Minor = (Ver % 100000) / 1000;
191 return std::make_tuple(Major, Minor, Rev);
  /external/clang/lib/Driver/
MSVCToolChain.cpp 504 const unsigned Minor = (FileInfo->dwFileVersionMS ) & 0xFFFF;
507 Version = VersionTuple(Major, Minor, Micro);
ToolChains.h 54 /// \brief The parsed major, minor, and patch numbers.
55 int Major, Minor, Patch;
57 /// \brief The text of the parsed major, and major+minor versions.
67 return isOlderThan(RHS.Major, RHS.Minor, RHS.Patch, RHS.PatchSuffix);
431 void setTarget(DarwinPlatformKind Platform, unsigned Major, unsigned Minor,
436 TargetVersion == VersionTuple(Major, Minor, Micro))
442 TargetVersion = VersionTuple(Major, Minor, Micro);
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 87 unsigned Minor;
234 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
238 VersionMinInfo.Minor = Minor;
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenVtf/
GenVtf.c 100 This function split version to major version and minor version
106 MinorVer - The minor version
116 unsigned Minor;
120 Minor = 0;
127 &Minor
141 &Minor
146 *MinorVer = (UINT8) Minor;
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 259 uint32_t Minor;
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 200 unsigned Major, Minor, Update;
204 TT.getWatchOSVersion(Major, Minor, Update);
207 TT.getiOSVersion(Major, Minor, Update);
210 if (!TT.getMacOSXVersion(Major, Minor, Update))
214 TT.getiOSVersion(Major, Minor, Update);
217 OutStreamer->EmitVersionMin(VersionType, Major, Minor, Update);
    [all...]

Completed in 608 milliseconds

1 2