HomeSort by relevance Sort by last modified time
    Searched refs:Major (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/clang/include/clang/Basic/
VersionTuple.h 12 /// the form major[.minor[.subminor]].
25 /// \brief Represents a version number in the form major[.minor[.subminor[.build]]].
27 unsigned Major : 31;
38 : Major(0), Minor(0), Subminor(0), Build(0), HasMinor(false),
41 explicit VersionTuple(unsigned Major)
42 : Major(Major), Minor(0), Subminor(0), Build(0), HasMinor(false),
45 explicit VersionTuple(unsigned Major, unsigned Minor,
47 : Major(Major), Minor(Minor), Subminor(0), Build(0), HasMinor(true)
    [all...]
  /external/tcpdump/
nfsfh.h 48 uint32_t Major;
51 #define dev_eq(a,b) ((a.Minor == b.Minor) && (a.Major == b.Major))
parsenfsfh.c 153 /* probably rules out HP-UX, AIX unless they allow major=0 */
257 fsidp->Fsid_dev.Major = fhp[6];
268 fsidp->Fsid_dev.Major = fhp[1];
283 fsidp->Fsid_dev.Major = (temp>>20) & 0xFFF;
292 fsidp->Fsid_dev.Major = fhp[2];
303 fsidp->Fsid_dev.Major = make_uint16(fhp[0], fhp[1]);
325 fsidp->Fsid_dev.Major = fhp[2];
336 fsidp->Fsid_dev.Major = (temp>>2) & 0x3FFF;
350 fsidp->Fsid_dev.Major = fhp[1];
372 fsidp->Fsid_dev.Major = tempa[2] + (tempa[3]<<1)
    [all...]
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUTargetStreamer.h 24 virtual void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
27 virtual void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
45 void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
48 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
81 void EmitDirectiveHSACodeObjectVersion(uint32_t Major,
84 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
AMDGPUTargetStreamer.cpp 39 AMDGPUTargetAsmStreamer::EmitDirectiveHSACodeObjectVersion(uint32_t Major,
42 Twine(Major) << "," << Twine(Minor) << '\n';
46 AMDGPUTargetAsmStreamer::EmitDirectiveHSACodeObjectISA(uint32_t Major,
52 Twine(Major) << "," << Twine(Minor) << "," << Twine(Stepping) <<
256 AMDGPUTargetELFStreamer::EmitDirectiveHSACodeObjectVersion(uint32_t Major,
269 OS.EmitIntValue(Major, 4); // desc
276 AMDGPUTargetELFStreamer::EmitDirectiveHSACodeObjectISA(uint32_t Major,
288 sizeof(Major) + sizeof(Minor) + sizeof(Stepping) +
299 OS.EmitIntValue(Major, 4);
  /external/llvm/include/llvm/ADT/
Triple.h 277 void getEnvironmentVersion(unsigned &Major, unsigned &Minor,
289 void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
291 /// getOSMajorVersion - Return just the major version number, this is
303 bool getMacOSXVersion(unsigned &Major, unsigned &Minor,
308 void getiOSVersion(unsigned &Major, unsigned &Minor,
313 void getWatchOSVersion(unsigned &Major, unsigned &Minor,
369 bool isOSVersionLT(unsigned Major, unsigned Minor = 0,
374 if (LHS[0] != Major)
375 return LHS[0] < Major;
393 unsigned isMacOSXVersionLT(unsigned Major, unsigned Minor = 0
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp 139 unsigned Major, Minor, Micro;
140 TargetTriple.getiOSVersion(Major, Minor, Micro);
141 return Major >= 8;
  /external/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.h 27 unsigned Major;
AMDGPUBaseInfo.cpp 57 Header.amd_machine_version_major = ISA.Major;
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.h 26 Byte Major;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
A2dpDeviceCriteria.java 30 return majorDeviceClass == BluetoothClass.Device.Major.AUDIO_VIDEO;
InputDeviceCriteria.java 38 return majorDeviceClass == BluetoothClass.Device.Major.PERIPHERAL;
BluetoothDevicePairer.java 650 case BluetoothClass.Device.Major.PERIPHERAL:
653 case BluetoothClass.Device.Major.AUDIO_VIDEO:
  /frameworks/base/core/java/android/bluetooth/
BluetoothClass.java 29 * exactly one device class. The device class is further broken down into major
136 * major and minor components.
138 * BluetoothClass.Device} represent a combination of major and minor
140 * BluetoothClass.Device.Major} represent only major device classes.
147 * Defines all major device class constants.
150 public static class Major {
166 // Devices in the COMPUTER major class
175 // Devices in the PHONE major class
183 // Minor classes for the AUDIO_VIDEO major clas
    [all...]
  /external/llvm/lib/Support/
Triple.cpp 889 static void parseVersionFromName(StringRef Name, unsigned &Major,
892 Major = Minor = Micro = 0;
895 unsigned *Components[3] = {&Major, &Minor, &Micro};
909 void Triple::getEnvironmentVersion(unsigned &Major, unsigned &Minor,
916 parseVersionFromName(EnvironmentName, Major, Minor, Micro);
919 void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
927 parseVersionFromName(OSName, Major, Minor, Micro);
930 bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor,
932 getOSVersion(Major, Minor, Micro);
938 if (Major == 0
    [all...]
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 77 void EmitVersionMin(MCVersionMinType Kind, unsigned Major,
264 void MCMachOStreamer::EmitVersionMin(MCVersionMinType Kind, unsigned Major,
266 getAssembler().setVersionMinInfo(Kind, Major, Minor, Update);
491 unsigned Major, Minor, Update;
492 TT.getOSVersion(Major, Minor, Update);
493 // If there is a version specified, Major will be non-zero.
494 if (Major) {
506 S->EmitVersionMin(VersionType, Major, Minor, Update);
  /external/llvm/unittests/ADT/
TripleTest.cpp 661 unsigned Major, Minor, Micro;
669 T.getMacOSXVersion(Major, Minor, Micro);
670 EXPECT_EQ((unsigned)10, Major);
673 T.getiOSVersion(Major, Minor, Micro);
674 EXPECT_EQ((unsigned)5, Major);
684 T.getMacOSXVersion(Major, Minor, Micro);
685 EXPECT_EQ((unsigned)10, Major);
688 T.getiOSVersion(Major, Minor, Micro);
689 EXPECT_EQ((unsigned)5, Major);
699 T.getMacOSXVersion(Major, Minor, Micro)
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDevicePreference.java 261 case BluetoothClass.Device.Major.COMPUTER:
264 case BluetoothClass.Device.Major.PHONE:
267 case BluetoothClass.Device.Major.PERIPHERAL:
271 case BluetoothClass.Device.Major.IMAGING:
  /external/clang/lib/Driver/
MSVCToolChain.cpp 252 bool MSVCToolChain::getWindowsSDKDir(std::string &Path, int &Major,
266 Major = 0;
267 std::sscanf(RegistrySDKVersion.c_str(), "v%d.", &Major);
268 if (Major <= 7)
270 if (Major == 8) {
285 if (Major == 10) {
561 int major; local
564 if (getWindowsSDKDir(WindowsSDKDir, major, windowsSDKIncludeVersion,
566 if (major >= 8) {
ToolChains.cpp 564 unsigned Major, Minor, Micro;
567 getTriple().getiOSVersion(Major, Minor, Micro);
568 llvm::raw_string_ostream(iOSTarget) << Major << '.' << Minor << '.'
571 getTriple().getWatchOSVersion(Major, Minor, Micro);
572 llvm::raw_string_ostream(WatchOSTarget) << Major << '.' << Minor << '.'
576 if (!getTriple().getMacOSXVersion(Major, Minor, Micro)) {
580 llvm::raw_string_ostream(OSXTarget) << Major << '.' << Minor << '.'
645 unsigned Major, Minor, Micro;
650 if (!Driver::GetReleaseVersion(OSXVersion->getValue(), Major, Minor, Micro,
652 HadExtra || Major != 10 || Minor >= 100 || Micro >= 100
    [all...]
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 163 unsigned Major, Minor, Micro;
164 triple.getOSVersion(Major, Minor, Micro);
165 return Major > 10 || (Major == 10 && Minor >= 7);
  /external/llvm/include/llvm/MC/
MCAssembler.h 559 // A Major version of 0 indicates that no version information was supplied
563 unsigned Major;
708 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
711 VersionMinInfo.Major = Major;
  /external/ImageMagick/MagickCore/
resample.c 697 % ClampUpAxes() function converts the input vectors into a major and
708 % By generating major and minor axis vectors, we can actually use the
710 % sampled point into distances along the major and minor axis unit
732 * and computes from it the major and minor axis vectors [major_x,
747 * major_mag is the half-length of the major axis of the "new"
753 * major_unit_x is the x-coordinate of the major axis direction vector
756 * major_unit_y is the y-coordinate of the major axis direction vector.
788 * counterclockwise from the direction of the major axis vector.
806 * values in order to get the minor and major ellipse axis vectors.
    [all...]
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 363 bool ParseDirectiveMajorMinor(uint32_t &Major, uint32_t &Minor);
673 bool AMDGPUAsmParser::ParseDirectiveMajorMinor(uint32_t &Major,
676 return TokError("invalid major version");
678 Major = getLexer().getTok().getIntVal();
696 uint32_t Major;
699 if (ParseDirectiveMajorMinor(Major, Minor))
702 getTargetStreamer().EmitDirectiveHSACodeObjectVersion(Major, Minor);
708 uint32_t Major;
718 getTargetStreamer().EmitDirectiveHSACodeObjectISA(Isa.Major, Isa.Minor,
725 if (ParseDirectiveMajorMinor(Major, Minor)
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp     [all...]

Completed in 1046 milliseconds

1 2 3 4