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

1 2 3

  /external/llvm/include/llvm/ADT/
DeltaAlgorithm.h 29 /// (2) If the predicate returns true for a set of changes, it should return
48 /// GetTestResult - Get the test result for the \p Changes from the
51 /// \param Changes - The change set to test.
53 bool GetTestResult(const changeset_ty &Changes);
55 /// Split - Partition a set of changes \p S into one or two subsets.
58 /// Delta - Minimize a set of \p Changes which has been partioned into
60 changeset_ty Delta(const changeset_ty &Changes,
64 /// removed from \p Changes while still satisfying the predicate.
66 /// \param Res - On success, a subset of Changes which satisfies the
69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets
    [all...]
DAGDeltaAlgorithm.h 26 /// The DAG should be used to represent dependencies in the changes which are
33 /// eagerly prune large subsets of changes. As with \see DeltaAlgorithm, the DAG
51 /// Run - Minimize the DAG formed by the \p Changes vertices and the
53 /// changes and returning the smallest set which still satisfies the test
56 /// \param Changes The list of changes.
58 /// \param Dependencies The list of dependencies amongst changes. For each
59 /// (x,y) in \p Dependencies, both x and y must be in \p Changes. The
63 changeset_ty Run(const changeset_ty &Changes,
66 /// UpdatedSearchState - Callback used when the search state changes
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
DeltaAlgorithm.h 29 /// (2) If the predicate returns true for a set of changes, it should return
48 /// GetTestResult - Get the test result for the \arg Changes from the
51 /// \param Changes - The change set to test.
53 bool GetTestResult(const changeset_ty &Changes);
55 /// Split - Partition a set of changes \arg S into one or two subsets.
58 /// Delta - Minimize a set of \arg Changes which has been partioned into
60 changeset_ty Delta(const changeset_ty &Changes,
64 /// removed from \arg Changes while still satisfying the predicate.
66 /// \param Res - On success, a subset of Changes which satisfies the
69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets
    [all...]
DAGDeltaAlgorithm.h 26 /// The DAG should be used to represent dependencies in the changes which are
33 /// eagerly prune large subsets of changes. As with \see DeltaAlgorithm, the DAG
50 /// Run - Minimize the DAG formed by the \arg Changes vertices and the \arg
52 /// changes and returning the smallest set which still satisfies the test
55 /// \param Changes The list of changes.
57 /// \param Dependencies The list of dependencies amongst changes. For each
58 /// (x,y) in \arg Dependencies, both x and y must be in \arg Changes. The
61 changeset_ty Run(const changeset_ty &Changes,
64 /// UpdatedSearchState - Callback used when the search state changes
    [all...]
  /external/clang/lib/Format/
WhitespaceManager.cpp 46 Changes.clear();
57 Changes.push_back(
69 Changes.push_back(Change(
84 Changes.push_back(Change(
94 if (Changes.empty())
97 std::sort(Changes.begin(), Changes.end(), Change::IsBeforeInFile(SourceMgr));
109 Changes[0].PreviousEndOfTokenColumn = 0;
110 Change *LastOutsideTokenChange = &Changes[0];
111 for (unsigned i = 1, e = Changes.size(); i != e; ++i)
    [all...]
WhitespaceManager.h 87 /// \brief Functor to sort changes in original source order.
116 // Changes might be in the middle of a token, so we cannot just keep the
173 /// \brief Align consecutive assignments over all \c Changes.
176 /// \brief Align consecutive declarations over all \c Changes.
179 /// \brief Align trailing comments over all \c Changes.
186 /// \brief Align escaped newlines over all \c Changes.
193 /// \brief Fill \c Replaces with the replacements for all effective changes.
205 SmallVector<Change, 16> Changes;
  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 17 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) {
18 if (FailedTestsCache.count(Changes))
21 bool Result = ExecuteOneTest(Changes);
23 FailedTestsCache.insert(Changes);
44 DeltaAlgorithm::Delta(const changeset_ty &Changes,
46 // Invariant: union(Res) == Changes
47 UpdatedSearchState(Changes, Sets);
51 return Changes;
55 if (Search(Changes, Sets, Res))
64 return Changes;
    [all...]
DAGDeltaAlgorithm.cpp 118 void UpdatedSearchState(const changeset_ty &Changes,
121 DDA.UpdatedSearchState(Changes, Sets, Required);
139 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes,
144 /// GetTestResult - Get the test result for the active set \p Changes with
145 /// \p Required changes from the cache, executing the test if necessary.
147 /// \param Changes - The set of active changes being minimized, which should
149 /// \param Required - The set of changes which have previously been
152 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
155 /// Helper object for minimizing an active set of changes
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
DeltaAlgorithm.cpp 17 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) {
18 if (FailedTestsCache.count(Changes))
21 bool Result = ExecuteOneTest(Changes);
23 FailedTestsCache.insert(Changes);
44 DeltaAlgorithm::Delta(const changeset_ty &Changes,
46 // Invariant: union(Res) == Changes
47 UpdatedSearchState(Changes, Sets);
51 return Changes;
55 if (Search(Changes, Sets, Res))
64 return Changes;
    [all...]
DAGDeltaAlgorithm.cpp 64 const changeset_ty &Changes;
119 void UpdatedSearchState(const changeset_ty &Changes,
122 DDA.UpdatedSearchState(Changes, Sets, Required);
146 /// GetTestResult - Get the test result for the active set \arg Changes with
147 /// \arg Required changes from the cache, executing the test if necessary.
149 /// \param Changes - The set of active changes being minimized, which should
151 /// \param Required - The set of changes which have previously been
154 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
157 /// Helper object for minimizing an active set of changes
    [all...]
  /external/libavc/common/arm/
ih264_arm_memory_barrier.s 47 @* DD MM YYYY Author(s) Changes
64 @* DD MM YYYY Author(s) Changes
  /external/llvm/unittests/ADT/
DAGDeltaAlgorithmTest.cpp 25 bool ExecuteOneTest(const changeset_ty &Changes) override {
27 return std::includes(Changes.begin(), Changes.end(),
85 // This is a case where we must hold required changes.
DeltaAlgorithmTest.cpp 40 bool ExecuteOneTest(const changeset_ty &Changes) override {
42 return std::includes(Changes.begin(), Changes.end(),
  /external/swiftshader/third_party/LLVM/unittests/ADT/
DAGDeltaAlgorithmTest.cpp 25 virtual bool ExecuteOneTest(const changeset_ty &Changes) {
27 return std::includes(Changes.begin(), Changes.end(),
85 // This is a case where we must hold required changes.
DeltaAlgorithmTest.cpp 40 virtual bool ExecuteOneTest(const changeset_ty &Changes) {
42 return std::includes(Changes.begin(), Changes.end(),
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveRangeCalc.cpp 178 unsigned Changes;
180 Changes = 0;
236 ++Changes;
265 ++Changes;
269 } while (Changes);
  /sdk/eclipse/scripts/
update_version.sh 10 Changes the ADT plugin revision number.
  /external/llvm/lib/CodeGen/
LiveRangeCalc.cpp 393 unsigned Changes;
395 Changes = 0;
450 ++Changes;
479 ++Changes;
483 } while (Changes);
  /device/google/dragon-kernel/
push-kernel.sh 28 # smaug-paladin - potentially has kernel changes that are not upstream
76 Changes include:
  /external/llvm/lib/Target/AMDGPU/
SIInsertWaits.cpp 515 bool Changes = false;
604 Changes |= insertWait(MBB, I, Required);
611 Changes |= insertWait(MBB, MBB.getFirstTerminator(), LastIssued);
617 return Changes;
  /external/Microsoft-GSL/
CONTRIBUTING.md 4 [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines). GSL design changes are made only as a result of modifications to the Guidelines.
6 GSL is accepting contributions that improve or refine any of the types in this library as well as ports to other platforms. Changes should have an issue
27 * Include baseline changes with your change
  /prebuilts/go/darwin-x86/src/runtime/
debug.go 40 // at process startup. Changes to operating system CPU allocation after
  /prebuilts/go/linux-x86/src/runtime/
debug.go 40 // at process startup. Changes to operating system CPU allocation after
  /external/clang/include/clang/Sema/
AttributeList.h 56 AvailabilityChange Changes[NumAvailabilitySlots];
64 Changes[IntroducedSlot] = Introduced;
65 Changes[DeprecatedSlot] = Deprecated;
66 Changes[ObsoletedSlot] = Obsoleted;
434 return getAvailabilityData()->Changes[IntroducedSlot];
439 return getAvailabilityData()->Changes[DeprecatedSlot];
444 return getAvailabilityData()->Changes[ObsoletedSlot];
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 657 bool Changes = true;
659 while (Changes) {
661 Changes = false;
671 Changes = true;
675 Changes = true;
682 Changes = true;
687 Changes = true;
    [all...]

Completed in 734 milliseconds

1 2 3