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

12 3 4

  /external/clang/include/clang/Driver/
Driver.h 456 static bool GetReleaseVersion(const char *Str, unsigned &Major,
  /external/clang/lib/Driver/
MinGWToolChain.cpp 34 if (CandidateVersion.Major == -1)
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/llvm/lib/MC/
MachObjectWriter.cpp 725 if (VersionInfo.Major != 0) {
812 if (VersionInfo.Major != 0) {
815 assert(VersionInfo.Major < 65536 && "unencodable major target version");
817 (VersionInfo.Major << 16);
    [all...]
MCAsmStreamer.cpp 131 void EmitVersionMin(MCVersionMinType Kind, unsigned Major, unsigned Minor,
373 void MCAsmStreamer::EmitVersionMin(MCVersionMinType Kind, unsigned Major,
381 OS << " " << Major << ", " << Minor;
    [all...]
MCAssembler.cpp 341 VersionMinInfo.Major = 0; // Major version == 0 for "none specified"
361 VersionMinInfo.Major = 0;
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 437 uint32_t Major;
  /external/v8/src/arm/
code-stubs-arm.h 201 inline Major MajorKey() const final { return RecordWrite; }
  /external/v8/src/arm64/
code-stubs-arm64.h 281 inline Major MajorKey() const final { return RecordWrite; }
  /external/v8/src/
disassembler.cc 215 // Get the STUB key and extract major and minor key.
218 CodeStub::Major major_key = CodeStub::GetMajorKey(code);
code-stubs.h 223 enum Major {
239 static Major MajorKeyFromKey(uint32_t key) {
240 return static_cast<Major>(MajorKeyBits::decode(key));
246 // Gets the major key from a code object that is a code stub or binary op IC.
247 static Major GetMajorKey(Code* code_stub) {
253 static const char* MajorName(Major major_key);
286 virtual Major MajorKey() const = 0;
318 // Computes the key based on major and minor.
380 inline Major MajorKey() const override { return NAME; }; \
    [all...]
  /external/v8/src/mips/
code-stubs-mips.h 232 inline Major MajorKey() const final { return RecordWrite; }
  /external/v8/src/mips64/
code-stubs-mips64.h 233 inline Major MajorKey() const final { return RecordWrite; }
  /external/v8/src/ppc/
code-stubs-ppc.h 221 inline Major MajorKey() const final { return RecordWrite; }
  /external/llvm/include/llvm/MC/
MCStreamer.h 388 virtual void EmitVersionMin(MCVersionMinType, unsigned Major, unsigned Minor,
  /external/v8/src/ia32/
code-stubs-ia32.h 324 inline Major MajorKey() const final { return RecordWrite; }
  /external/v8/src/s390/
code-stubs-s390.h 247 inline Major MajorKey() const final { return RecordWrite; }
  /external/v8/src/x64/
code-stubs-x64.h 318 Major MajorKey() const final { return RecordWrite; }
  /external/v8/src/x87/
code-stubs-x87.h 321 inline Major MajorKey() const final { return RecordWrite; }
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.cpp 30 av.Major = kMajorVersion;
32 RINOK(WriteDirectByte(av.Major));
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 196 unsigned Major, Minor, Update;
197 TT.getOSVersion(Major, Minor, Update);
198 // If there is a version specified, Major will be non-zero.
199 if (Major) {
209 OutStreamer->EmitVersionMin(VersionType, Major, Minor, Update);
    [all...]
  /external/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp 330 OS << Version.Major << "." << Version.Minor << "." << Version.Build;
  /external/llvm/lib/Target/AMDGPU/
AMDGPUAsmPrinter.cpp 186 TS->EmitDirectiveHSACodeObjectISA(ISA.Major, ISA.Minor, ISA.Stepping,
  /external/clang/lib/Parse/
ParseDecl.cpp 732 // Parse the major (and possibly minor and subminor) versions, which
746 // Parse the major version.
748 unsigned Major = 0;
750 Major = Major * 10 + ThisTokBegin[AfterMajor] - '0';
765 if (Major == 0) {
770 return VersionTuple(Major);
793 // We had major.minor.
794 if (Major == 0 && Minor == 0) {
799 return VersionTuple(Major, Minor, (AfterMajorSeparator == '_'))
    [all...]
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIARawSymbol.cpp 442 Version.Major = PrivateGetDIAValue(Symbol, &IDiaSymbol::get_backEndMajor);
491 Version.Major = PrivateGetDIAValue(Symbol, &IDiaSymbol::get_frontEndMajor);
    [all...]

Completed in 1694 milliseconds

12 3 4