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

1 2 3

  /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]]].
28 unsigned Minor : 31;
38 : Major(0), Minor(0), Subminor(0), Build(0), HasMinor(false),
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),
50 explicit VersionTuple(unsigned Major, unsigned Minor, unsigned Subminor,
52 : Major(Major), Minor(Minor), Subminor(Subminor), Build(0)
    [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))
parsenfsfh.c 166 /* seems to be DECOSF, with minor == 0 */
195 * might be HP-UX (depends on their values for minor devs)
256 fsidp->Fsid_dev.Minor = fhp[7];
267 fsidp->Fsid_dev.Minor = fhp[0];
282 fsidp->Fsid_dev.Minor = temp & 0xFFFFF;
291 fsidp->Fsid_dev.Minor = fhp[3];
302 fsidp->Fsid_dev.Minor = make_uint16(fhp[2], fhp[3]);
324 fsidp->Fsid_dev.Minor = fhp[3];
338 fsidp->Fsid_dev.Minor = temp & 0x3FFFF;
349 fsidp->Fsid_dev.Minor = fhp[0]
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 16 * \class Minor
18 * \brief Expression of a minor
20 * \param MatrixType the type of the object in which we are taking a minor
22 * This class represents an expression of a minor. It is the return
23 * type of MatrixBase::minor() and most of the time this is the only way it
26 * \sa MatrixBase::minor()
31 struct traits<Minor<MatrixType> >
47 CoeffReadCost = _MatrixTypeNested::CoeffReadCost // minor is used typically on tiny matrices,
53 template<typename MatrixType> class Minor
54 : public MatrixBase<Minor<MatrixType>
101 MatrixBase<Derived>::minor(Index row, Index col) function in class:Eigen::MatrixBase
110 MatrixBase<Derived>::minor(Index row, Index col) const function in class:Eigen::MatrixBase
    [all...]
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUTargetStreamer.h 25 uint32_t Minor) = 0;
27 virtual void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
46 uint32_t Minor) override;
48 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
82 uint32_t Minor) override;
84 void EmitDirectiveHSACodeObjectISA(uint32_t Major, uint32_t Minor,
AMDGPUTargetStreamer.cpp 40 uint32_t Minor) {
42 Twine(Major) << "," << Twine(Minor) << '\n';
47 uint32_t Minor,
52 Twine(Major) << "," << Twine(Minor) << "," << Twine(Stepping) <<
257 uint32_t Minor) {
270 OS.EmitIntValue(Minor, 4);
277 uint32_t Minor,
288 sizeof(Major) + sizeof(Minor) + sizeof(Stepping) +
300 OS.EmitIntValue(Minor, 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;
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,
376 if (LHS[1] != Minor)
377 return LHS[1] < Minor;
393 unsigned isMacOSXVersionLT(unsigned Major, unsigned Minor = 0,
399 return isOSVersionLT(Major, Minor, Micro)
    [all...]
  /external/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.h 28 unsigned Minor;
AMDGPUBaseInfo.cpp 58 Header.amd_machine_version_minor = ISA.Minor;
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.h 27 Byte Minor;
  /external/clang/lib/Basic/
VersionTuple.cpp 11 // the form major[.minor[.subminor]].
31 if (Optional<unsigned> Minor = V.getMinor())
32 Out << (V.usesUnderscores() ? '_' : '.') << *Minor;
60 unsigned major = 0, minor = 0, micro = 0, build = 0; local
70 // If we're not done, parse the minor version, \.[0-9]+
73 if (parseInt(input, minor)) return true;
76 *this = VersionTuple(major, minor);
86 *this = VersionTuple(major, minor, micro);
98 *this = VersionTuple(major, minor, micro, build);
  /external/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp 139 unsigned Major, Minor, Micro;
140 TargetTriple.getiOSVersion(Major, Minor, Micro);
  /external/llvm/unittests/ADT/
TripleTest.cpp 661 unsigned Major, Minor, Micro;
669 T.getMacOSXVersion(Major, Minor, Micro);
671 EXPECT_EQ((unsigned)5, Minor);
673 T.getiOSVersion(Major, Minor, Micro);
675 EXPECT_EQ((unsigned)0, Minor);
684 T.getMacOSXVersion(Major, Minor, Micro);
686 EXPECT_EQ((unsigned)5, Minor);
688 T.getiOSVersion(Major, Minor, Micro);
690 EXPECT_EQ((unsigned)0, Minor);
699 T.getMacOSXVersion(Major, Minor, Micro)
    [all...]
  /external/llvm/lib/Support/
Triple.cpp 890 unsigned &Minor, unsigned &Micro) {
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);
944 Minor = Major - 4
    [all...]
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 78 unsigned Minor, unsigned Update) override;
265 unsigned Minor, unsigned Update) {
266 getAssembler().setVersionMinInfo(Kind, Major, Minor, Update);
491 unsigned Major, Minor, Update;
492 TT.getOSVersion(Major, Minor, Update);
506 S->EmitVersionMin(VersionType, Major, Minor, Update);
  /external/mesa3d/docs/
MESA_window_pos.spec 125 * Revision 1.1 - Minor clean-up (7 Jan 2000, Brian Paul)
  /external/llvm/include/llvm/MC/
MCAssembler.h 564 unsigned Minor;
708 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
712 VersionMinInfo.Minor = Minor;
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 363 bool ParseDirectiveMajorMinor(uint32_t &Major, uint32_t &Minor);
674 uint32_t &Minor) {
682 return TokError("minor version number required, comma expected");
686 return TokError("invalid minor version");
688 Minor = getLexer().getTok().getIntVal();
697 uint32_t Minor;
699 if (ParseDirectiveMajorMinor(Major, Minor))
702 getTargetStreamer().EmitDirectiveHSACodeObjectVersion(Major, Minor);
709 uint32_t Minor;
718 getTargetStreamer().EmitDirectiveHSACodeObjectISA(Isa.Major, Isa.Minor,
    [all...]
  /external/ImageMagick/MagickCore/
resample.c 698 % minor axis unit vectors, and their magnitude. This allows us to
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,
750 * minor_mag is the half-length of the minor axis of the "new"
758 * minor_unit_x is the x-coordinate of the minor axis direction vector.
760 * minor_unit_y is the y-coordinate of the minor axis direction vector.
786 * the singular values are not clamped; for example, the minor axis
806 * values in order to get the minor and major ellipse axis vectors.
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp     [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/clang/lib/Driver/
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...]
ToolChains.h 52 /// \brief The parsed major, minor, and patch numbers.
53 int Major, Minor, Patch;
55 /// \brief The text of the parsed major, and major+minor versions.
65 return isOlderThan(RHS.Major, RHS.Minor, RHS.Patch, RHS.PatchSuffix);
413 void setTarget(DarwinPlatformKind Platform, unsigned Major, unsigned Minor,
418 TargetVersion == VersionTuple(Major, Minor, Micro))
424 TargetVersion = VersionTuple(Major, Minor, Micro);
    [all...]
  /external/clang/include/clang/Driver/
Driver.h 457 unsigned &Minor, unsigned &Micro,
  /external/eigen/Eigen/src/Core/
MatrixBase.h 487 Minor<Derived> minor(Index row, Index col);
488 const Minor<Derived> minor(Index row, Index col) const;

Completed in 543 milliseconds

1 2 3