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

1 2 3

  /external/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
CGSCCPassManager.h 80 /// iteration continues in some valid post-order sequence after the mutation
685 for (int Iteration = 0;; ++Iteration) {
689 // CGSCC layer handle any iteration to reflect the refined structure.
727 // the next iteration
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 49 UnrolledInstAnalyzer(unsigned Iteration,
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
69 /// iteration.
73 /// constant-fold on the given iteration.
76 /// of simplified values specific to this iteration. The idea is to propagate
  /art/runtime/gc/collector/
iteration.h 31 // A information related single garbage collector iteration. Since we only ever have one GC running
32 // at any given time, we can have a single iteration info.
33 class Iteration {
35 Iteration();
66 // Returns the estimated throughput of the iteration.
93 DISALLOW_COPY_AND_ASSIGN(Iteration);
garbage_collector.cc 43 Iteration::Iteration()
44 : duration_ns_(0), timings_("GC iteration timing logger", true, VLOG_IS_ON(heap)) {
48 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) {
59 uint64_t Iteration::GetEstimatedThroughput() const {
91 Iteration* current_iteration = GetCurrentIteration();
99 // Update cumulative statistics with how many bytes the GC iteration freed.
191 // Returns the current GC iteration and assocated info.
192 Iteration* GarbageCollector::GetCurrentIteration() {
195 const Iteration* GarbageCollector::GetCurrentIteration() const
    [all...]
garbage_collector.h 30 #include "iteration.h"
99 // Returns the current GC iteration and assocated info.
100 Iteration* GetCurrentIteration();
101 const Iteration* GetCurrentIteration() const;
  /external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
JmhClientSocketBenchmark.java 46 @Setup(Level.Iteration)
73 @Setup(Level.Iteration)
78 @TearDown(Level.Iteration)
JmhServerSocketBenchmark.java 46 @Setup(Level.Iteration)
73 @Setup(Level.Iteration)
78 @TearDown(Level.Iteration)
JmhEngineWrapBenchmark.java 70 @Setup(Level.Iteration)
75 @TearDown(Level.Iteration)
JmhEngineHandshakeBenchmark.java 66 @Setup(Level.Iteration)
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 60 "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden,
178 /// each iteration.
185 int Iteration : 30;
201 return PairInfo::getHashValue({S.I, S.Iteration});
205 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration});
229 /// given iteration its condition would be resolved to true, we won't add up the
270 // We track the simplification of each instruction in each iteration. We use
284 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) {
285 assert(Iteration >= 0 && "Cannot have a negative iteration!")
    [all...]
  /external/llvm/lib/Analysis/
CallGraphSCCPass.cpp 464 // Because of this, we allow iteration up to a specified iteration count.
467 // iteration count limit in case there is crazy code.
468 unsigned Iteration = 0;
471 DEBUG(if (Iteration)
472 dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #"
473 << Iteration << '\n');
476 } while (Iteration++ < MaxIterations && DevirtualizedCall);
479 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
CallGraphSCCPass.cpp 444 // Because of this, we allow iteration up to a specified iteration count.
447 // iteration count limit in case there is crazy code.
448 unsigned Iteration = 0;
451 DEBUG(if (Iteration)
452 dbgs() << " SCCPASSMGR: Re-visiting SCC, iteration #"
453 << Iteration << '\n');
456 } while (Iteration++ < MaxIterations && DevirtualizedCall);
459 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration
    [all...]
  /external/deqp/modules/egl/
teglWideColorTests.cpp 522 struct Iteration
527 Iteration(float s, float i, int c)
539 const std::vector<Iteration>& iterations);
567 const std::vector<struct Iteration> m_iterations;
571 WideColorSurfaceTest::WideColorSurfaceTest (EglTestContext& eglTestCtx, const char* name, const char* description, const EGLint* attribList, EGLint colorSpace, const std::vector<struct Iteration>& iterations)
1065 std::vector<Iteration>::const_iterator it; // declare an Iterator to a vector of strings
    [all...]
  /system/extras/tests/workloads/
feedly-chrome.sh 61 echo Iteration $cur of $iterations
  /external/llvm/unittests/Analysis/
UnrollAnalyzer.cpp 39 for (unsigned Iteration = 0; Iteration < TripCount; Iteration++) {
41 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, *SE, L);
106 // Check simplification expected on the 1st iteration.
117 // Check simplification expected on the last iteration.
172 // of the inner loop if we only know the iteration number of the outer loop.
214 // Check simplification expected on the 5th iteration.
260 // Check simplification expected on the 5th iteration.
308 // Check simplification expected on the 5th iteration
    [all...]
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 270 bool Iteration = true;
295 Iteration = false;
300 } while (Iteration);
  /external/webrtc/webrtc/common_audio/signal_processing/
filter_ar_fast_q12_armv7.S 28 @ r4: Iteration counter for the outer loop.
58 subs r6, r3, #3 @ Iteration counter for inner loop.

Completed in 766 milliseconds

1 2 3