HomeSort by relevance Sort by last modified time
    Searched refs:Major (Results 51 - 75 of 288) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCAssembler.h 85 // A Major version of 0 indicates that no version information was supplied
89 unsigned Major;
245 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
248 VersionMinInfo.Major = Major;
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 79 void EmitVersionMin(MCVersionMinType Kind, unsigned Major,
275 void MCMachOStreamer::EmitVersionMin(MCVersionMinType Kind, unsigned Major,
277 getAssembler().setVersionMinInfo(Kind, Major, Minor, Update);
505 unsigned Major, Minor, Update;
506 TT.getOSVersion(Major, Minor, Update);
507 // If there is a version specified, Major will be non-zero.
508 if (Major) {
520 S->EmitVersionMin(VersionType, Major, Minor, Update);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Triple.cpp 944 static void parseVersionFromName(StringRef Name, unsigned &Major,
947 Major = Minor = Micro = 0;
950 unsigned *Components[3] = {&Major, &Minor, &Micro};
964 void Triple::getEnvironmentVersion(unsigned &Major, unsigned &Minor,
971 parseVersionFromName(EnvironmentName, Major, Minor, Micro);
974 void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
982 parseVersionFromName(OSName, Major, Minor, Micro);
985 bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor,
987 getOSVersion(Major, Minor, Micro);
993 if (Major == 0
    [all...]
  /external/ltp/testcases/kernel/device-drivers/agp/kernel_space/
tagp.c 82 static int Major = TAGP_MAJOR;
671 rc = register_chrdev(Major, DEVICE_NAME, &tagp_fops);
677 if (Major == 0)
678 Major = rc;
703 rc = unregister_chrdev(Major, DEVICE_NAME);
  /external/ltp/testcases/kernel/device-drivers/base/tbase/
tbase.c 73 static int Major = TBASEMAJOR;
872 rc = register_chrdev(Major, DEVICE_NAME, &tbase_fops);
878 if (Major == 0)
879 Major = rc;
902 rc = unregister_chrdev(Major, DEVICE_NAME);
  /external/llvm/unittests/ADT/
TripleTest.cpp 714 unsigned Major, Minor, Micro;
722 T.getMacOSXVersion(Major, Minor, Micro);
723 EXPECT_EQ((unsigned)10, Major);
726 T.getiOSVersion(Major, Minor, Micro);
727 EXPECT_EQ((unsigned)5, Major);
737 T.getMacOSXVersion(Major, Minor, Micro);
738 EXPECT_EQ((unsigned)10, Major);
741 T.getiOSVersion(Major, Minor, Micro);
742 EXPECT_EQ((unsigned)5, Major);
752 T.getMacOSXVersion(Major, Minor, Micro)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
TcgService.h 27 UINT8 Major;
TrEEProtocol.h 27 UINT8 Major;
43 // For this version of the protocol, the Major version shall be set to 1
49 // For this version of the protocol, the Major version shall be set to 1
Bis.h 62 UINT32 Major; ///< The major BIS version number.
68 // Use these values to initialize EFI_BIS_VERSION.Major
133 @param InterfaceVersion On input, the caller supplies the major version number of the
135 On output, both the major and minor
136 version numbers are updated with the major and minor version
142 @retval EFI_INCOMPATIBLE_VERSION The InterfaceVersion.Major requested by the
144 implementation. The InterfaceVersion.Major has
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.h 26 Byte Major;
  /external/ltp/testcases/kernel/device-drivers/include/
includeTest.c 75 static int Major = 0;
147 printk("BLK INC - result =%d major %d\n", rc, INCLUDEMAJOR);
160 printk("major = %d\n", Major);
163 gd_ptr->major = INCLUDEMAJOR;
175 printk("major = %d\n", Major);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Bis/
Bis.h 48 UINT32 Major; // BIS Interface version number.
54 // Use these values to initialize EFI_BIS_VERSION.Major
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/TcgService/
TcgService.h 56 UINT8 Major;

Completed in 1055 milliseconds

1 23 4 5 6 7 8 91011>>