Home
last modified time | relevance | path

Searched refs:Iteration (Results 1 – 25 of 133) sorted by relevance

123456

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineCreationCacheControlTests.cpp278 struct Iteration struct
293 inline constexpr Iteration() : variants{}, validators{} {}; in Iteration() argument
294 …inline constexpr Iteration(const VariantArray& v, const ValidatorArray& f) : variants{v}, validato… in Iteration() function
301 using IterationArray = ConstexprVector<Iteration, MAX_ITERATIONS>;
721 vector<VkGraphicsPipelineCreateInfo> createPipelineCreateInfos(const TestParams::Iteration& ite… in createPipelineCreateInfos()
943 vector<VkComputePipelineCreateInfo> createPipelineCreateInfos(const TestParams::Iteration& iterat… in createPipelineCreateInfos()
1132 TestParams::Iteration{
1134 TestParams::Iteration::SINGLE_NORMAL,
1142 TestParams::Iteration{
1144 TestParams::Iteration::SINGLE_NOCOMPILE,
[all …]
/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp185 int Iteration : 30; member
201 return PairInfo::getHashValue({S.I, S.Iteration}); in getHashValue()
205 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration}); in isEqual()
284 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) { in analyzeLoopUnrollCost() argument
285 assert(Iteration >= 0 && "Cannot have a negative iteration!"); in analyzeLoopUnrollCost()
289 for (;; --Iteration) { in analyzeLoopUnrollCost()
295 auto CostIter = InstCostMap.find({I, Iteration, 0, 0}); in analyzeLoopUnrollCost()
314 if (Iteration == 0) in analyzeLoopUnrollCost()
330 DEBUG(dbgs() << "Adding cost of instruction (iteration " << Iteration in analyzeLoopUnrollCost()
354 assert(Iteration > 0 && in analyzeLoopUnrollCost()
[all …]
/external/llvm-project/llvm/tools/llvm-mca/Views/
DTimelineView.cpp216 unsigned Iteration, in printTimelineViewEntry() argument
218 if (Iteration == 0 && SourceIndex == 0) in printTimelineViewEntry()
220 OS << '[' << Iteration << ',' << SourceIndex << ']'; in printTimelineViewEntry()
285 for (unsigned Iteration = 0; Iteration < Iterations; ++Iteration) { in printTimeline() local
292 printTimelineViewEntry(FOS, Entry, Iteration, SourceIndex); in printTimeline()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp283 int Iteration : 30; member
302 return PairInfo::getHashValue({S.I, S.Iteration}); in getHashValue()
307 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration}); in isEqual()
386 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) { in analyzeLoopUnrollCost() argument
387 assert(Iteration >= 0 && "Cannot have a negative iteration!"); in analyzeLoopUnrollCost()
391 for (;; --Iteration) { in analyzeLoopUnrollCost()
397 auto CostIter = InstCostMap.find({I, Iteration, 0, 0}); in analyzeLoopUnrollCost()
416 if (Iteration == 0) in analyzeLoopUnrollCost()
433 << Iteration << "): "); in analyzeLoopUnrollCost()
456 assert(Iteration > 0 && in analyzeLoopUnrollCost()
[all …]
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp282 int Iteration : 30; member
301 return PairInfo::getHashValue({S.I, S.Iteration}); in getHashValue()
306 return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration}); in isEqual()
385 auto AddCostRecursively = [&](Instruction &RootI, int Iteration) { in analyzeLoopUnrollCost() argument
386 assert(Iteration >= 0 && "Cannot have a negative iteration!"); in analyzeLoopUnrollCost()
394 for (;; --Iteration) { in analyzeLoopUnrollCost()
400 auto CostIter = InstCostMap.find({I, Iteration, 0, 0}); in analyzeLoopUnrollCost()
419 if (Iteration == 0) in analyzeLoopUnrollCost()
436 << Iteration << "): "); in analyzeLoopUnrollCost()
459 assert(Iteration > 0 && in analyzeLoopUnrollCost()
[all …]
/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
DJmhServerSocketBenchmark.java45 @Setup(Level.Iteration)
72 @Setup(Level.Iteration)
77 @TearDown(Level.Iteration)
DJmhClientSocketBenchmark.java51 @Setup(Level.Iteration)
81 @Setup(Level.Iteration)
86 @TearDown(Level.Iteration)
DJmhEngineWrapBenchmark.java70 @Setup(Level.Iteration)
75 @TearDown(Level.Iteration)
/external/llvm-project/flang/runtime/
Dformat.h96 sizeof(Iteration) * (maxMaxHeight - maxHeight); in GetNeededSize()
110 struct Iteration { struct
157 Iteration stack_[maxMaxHeight];
Dformat-implementation.h33 stack_[0].remaining = Iteration::unlimited; // 13.4(8)
260 stack_[height_].remaining = Iteration::unlimited; in CueUpNextDataEdit()
288 if (stack_[height_ - 1].remaining == Iteration::unlimited) { in CueUpNextDataEdit()
/external/llvm/lib/Analysis/
DCallGraphSCCPass.cpp468 unsigned Iteration = 0; in runOnModule() local
471 DEBUG(if (Iteration) in runOnModule()
473 << Iteration << '\n'); in runOnModule()
476 } while (Iteration++ < MaxIterations && DevirtualizedCall); in runOnModule()
479 DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " << Iteration in runOnModule()
482 if (Iteration > MaxSCCIterations) in runOnModule()
483 MaxSCCIterations = Iteration; in runOnModule()
/external/llvm-project/llvm/include/llvm/Analysis/
DLoopUnrollAnalyzer.h48 UnrolledInstAnalyzer(unsigned Iteration, in UnrolledInstAnalyzer() argument
52 IterationNumber = SE.getConstant(APInt(64, Iteration)); in UnrolledInstAnalyzer()
/external/llvm/include/llvm/Analysis/
DLoopUnrollAnalyzer.h49 UnrolledInstAnalyzer(unsigned Iteration, in UnrolledInstAnalyzer() argument
53 IterationNumber = SE.getConstant(APInt(64, Iteration)); in UnrolledInstAnalyzer()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DLoopUnrollAnalyzer.h48 UnrolledInstAnalyzer(unsigned Iteration, in UnrolledInstAnalyzer() argument
52 IterationNumber = SE.getConstant(APInt(64, Iteration)); in UnrolledInstAnalyzer()
/external/deqp/modules/egl/
DteglWideColorTests.cpp556 struct Iteration struct
561 Iteration(float s, float i, int c) in Iteration() argument
573 const std::vector<Iteration>& iterations);
606 const std::vector<struct Iteration> m_iterations;
610 …tion, const EGLint* attribList, EGLint colorSpace, const std::vector<struct Iteration>& iterations) in WideColorSurfaceTest()
1168 std::vector<Iteration>::const_iterator it; // declare an Iterator to a vector of strings in doClearTest()
1365 std::vector<Iteration> iterations; in init()
1368 iterations.push_back(Iteration(-0.333251953125f, fp16Increment1, 10)); in init()
1370 iterations.push_back(Iteration(-fp16Increment1 * 5.0f, fp16Increment1, 10)); in init()
1373 iterations.push_back(Iteration(1.0f - fp16Increment2 * 5.0f, fp16Increment2, 10)); in init()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCallGraphSCCPass.cpp490 unsigned Iteration = 0; in runOnModule() local
493 LLVM_DEBUG(if (Iteration) dbgs() in runOnModule()
494 << " SCCPASSMGR: Re-visiting SCC, iteration #" << Iteration in runOnModule()
498 } while (Iteration++ < MaxIterations && DevirtualizedCall); in runOnModule()
502 << Iteration in runOnModule()
505 MaxSCCIterations.updateMax(Iteration); in runOnModule()
/external/autotest/tko/
Dtko.proto15 message Iteration { message
30 repeated Iteration iterations = 9;
/external/llvm/unittests/Analysis/
DUnrollAnalyzer.cpp39 for (unsigned Iteration = 0; Iteration < TripCount; Iteration++) { in runOnFunction() local
41 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, *SE, L); in runOnFunction()
/external/llvm-project/llvm/unittests/Analysis/
DUnrollAnalyzerTest.cpp40 for (unsigned Iteration = 0; Iteration < TripCount; Iteration++) { in runOnFunction() local
42 UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, *SE, L); in runOnFunction()
/external/llvm-project/llvm/lib/Analysis/
DCallGraphSCCPass.cpp534 unsigned Iteration = 0; in runOnModule() local
537 LLVM_DEBUG(if (Iteration) dbgs() in runOnModule()
538 << " SCCPASSMGR: Re-visiting SCC, iteration #" << Iteration in runOnModule()
542 } while (Iteration++ < MaxDevirtIterations && DevirtualizedCall); in runOnModule()
546 << Iteration in runOnModule()
549 MaxSCCIterations.updateMax(Iteration); in runOnModule()
/external/llvm-project/openmp/docs/optimizations/
DOpenMPUnawareOptimizations.rst9 - 2019 LLVM Developers’ Meeting: "The Attributor: A Versatile Inter-procedural Fixpoint Iteration F…
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp270 bool Iteration = true; in FlattenParallelAndOr() local
295 Iteration = false; in FlattenParallelAndOr()
300 } while (Iteration); in FlattenParallelAndOr()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp282 bool Iteration = true; in FlattenParallelAndOr() local
307 Iteration = false; in FlattenParallelAndOr()
312 } while (Iteration); in FlattenParallelAndOr()
/external/llvm-project/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp282 bool Iteration = true; in FlattenParallelAndOr() local
307 Iteration = false; in FlattenParallelAndOr()
312 } while (Iteration); in FlattenParallelAndOr()
/external/rust/crates/tinytemplate/src/
Dtemplate.rs24 Iteration( enumerator
51 ContextElement::Iteration(name, obj, _, _, _) => { in lookup()
87 ContextElement::Iteration(_, _, index, length, _) => return Ok((*index, *length)), in lookup_index()
262 render_context.context_stack.push(ContextElement::Iteration( in render_into()
283 Some(ContextElement::Iteration(_, val, index, _, iter)) => { in render_into()

123456