HomeSort by: relevance | last modified time | path
    Searched refs:Patch (Results 1 - 11 of 11) sorted by relevancy

  /src/external/gpl3/gdb/dist/sim/testsuite/d10v/
t-dbt.s 19 ;;; Patch the interrupt vector's dbt entry with a jmp to success
t-macros.i 158 ;;; Patch VEC so that it jumps back to code that checks PSW
161 ;;; Patch the interrupt vector's AE entry with a jmp to success
  /src/external/gpl3/gdb.old/dist/sim/testsuite/d10v/
t-dbt.s 19 ;;; Patch the interrupt vector's dbt entry with a jmp to success
t-macros.i 158 ;;; Patch VEC so that it jumps back to code that checks PSW
161 ;;; Patch the interrupt vector's AE entry with a jmp to success
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.h 156 /// a hard-coded patch number to those with a hard coded patch number.
165 /// The parsed major, minor, and patch numbers.
166 int Major, Minor, Patch;
171 /// Any textual suffix on the patch number.
178 return isOlderThan(RHS.Major, RHS.Minor, RHS.Patch, RHS.PatchSuffix);
Gnu.cpp 1795 if (Patch != RHSPatch) {
1796 // Note that versions without a specified patch sort higher than those with
1797 // a patch.
1800 if (Patch == -1)
1803 // Otherwise just sort on the patch itself.
1804 return Patch < RHSPatch;
1848 // stash the entire patch string in the suffix, and leave the number
1857 // And retains any patch number it finds.
1862 if (PatchText.slice(0, EndNumber).getAsInteger(10, GoodVersion.Patch) ||
1863 GoodVersion.Patch < 0
    [all...]
Clang.cpp 6038 // Check that the version has 1 to 3 components and the minor and patch
6044 unsigned Patch = GNUCVer.getSubminor().getValueOr(0);
6045 if (Invalid || GNUCVer.getBuild() || Minor >= 100 || Patch >= 100) {
  /src/external/bsd/pkg_install/dist/lib/
dewey.c 54 Patch = 1
115 * '_' encodes as 'patch level', or 'Dot', which is 0.
116 * 'pl' encodes as 'patch level', or 'Dot', which is 0.
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInvocation.cpp 3374 unsigned Patch = Opts.GNUCVersion % 100;
3376 Twine(Major) + "." + Twine(Minor) + "." + Twine(Patch), SA);
3709 // Check that the version has 1 to 3 components and the minor and patch
3715 unsigned Patch = GNUCVer.getSubminor().getValueOr(0);
3716 if (Invalid || GNUCVer.getBuild() || Minor >= 100 || Patch >= 100) {
3720 Opts.GNUCVersion = Major * 100 * 100 + Minor * 100 + Patch;
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFLinker.cpp 1180 PatchLocation Patch =
1184 Unit.noteRangeAttribute(Die, Patch);
1194 Unit.noteLocationAttribute(Patch, Info.PCOffset);
1530 /// Patch the input object file relevant debug_ranges entries
1847 /// is to patch the addresses in the headers.
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 4923 uint32_t Major = Words[1], Minor = Words[2], Patch = Words[3];
4926 ABI << Major << "." << Minor << "." << Patch;

Completed in 36 milliseconds