/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineCreationCacheControlTests.cpp | 276 struct Iteration struct 291 inline constexpr Iteration() : variants{}, validators{} {} in Iteration() function 292 inline constexpr Iteration(const VariantArray& v, const ValidatorArray& f) : variants{v}, validators{f} {} in Iteration() function 299 using IterationArray = ConstexprVector<Iteration, MAX_ITERATIONS>; 719 vector<VkGraphicsPipelineCreateInfo> createPipelineCreateInfos(const TestParams::Iteration& iteration, in createPipelineCreateInfos() 941 vector<VkComputePipelineCreateInfo> createPipelineCreateInfos(const TestParams::Iteration& iteration, in createPipelineCreateInfos() 1130 TestParams::Iteration{ 1131 // Iteration [0]: Force compilation of pipeline 1132 TestParams::Iteration::SINGLE_NORMAL, 1140 TestParams::Iteration{ [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | ramdaToolsNoInfinite2.js | 144 import { IterationOf } from "Iteration/IterationOf"; 145 import { Iteration } from "Iteration/Iteration"; 147 import { Key } from "Iteration/Key"; 148 import { Next } from "Iteration/Next"; 154 type PickIfEntry<O extends object, LN extends List, I extends Iteration> = Key<I> extends keyof O ? _Append<LN, O[Cast<Key<I>, keyof O>]> : LN; 156 type __ListOf<O extends object, K, LN extends List = [], I extends Iteration = IterationOf<'0'>> = { 198 import { IterationMap } from "Iteration/IterationOf"; 199 import { Format } from "Iteration/Forma [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineCreationCacheControlTests.cpp | 276 struct Iteration struct 291 inline constexpr Iteration() : variants{}, validators{} {} in Iteration() function 292 inline constexpr Iteration(const VariantArray& v, const ValidatorArray& f) : variants{v}, validators{f} {} in Iteration() function 299 using IterationArray = ConstexprVector<Iteration, MAX_ITERATIONS>; 722 vector<VkGraphicsPipelineCreateInfo> createPipelineCreateInfos(const TestParams::Iteration& iteration, in createPipelineCreateInfos() 959 vector<VkComputePipelineCreateInfo> createPipelineCreateInfos(const TestParams::Iteration& iteration, in createPipelineCreateInfos() 1145 TestParams::Iteration{ 1146 // Iteration [0]: Force compilation of pipeline 1147 TestParams::Iteration::SINGLE_NORMAL, 1155 TestParams::Iteration{ [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopUnrollPass.cpp | 283 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() 387 assert(Iteration >= 0 && "Cannot have a negative iteration!"); in analyzeLoopUnrollCost() 391 for (;; --Iteration) { in analyzeLoopUnrollCost() 395 // InstCostMap only uses I and Iteration as a key, the other two values in analyzeLoopUnrollCost() 397 auto CostIter = InstCostMap.find({I, Iteration, 0, 0}); in analyzeLoopUnrollCost() 416 if (Iteration in analyzeLoopUnrollCost() [all...] |
H A D | GVN.cpp | 2143 unsigned Iteration = 0; in runImpl() local 2145 LLVM_DEBUG(dbgs() << "GVN iteration: " << Iteration << "\n"); in runImpl() 2148 ++Iteration; in runImpl()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | LoopUnrollAnalyzer.h | 48 UnrolledInstAnalyzer(unsigned Iteration, in UnrolledInstAnalyzer() argument 52 IterationNumber = SE.getConstant(APInt(64, Iteration)); in UnrolledInstAnalyzer()
|
H A D | CGSCCPassManager.h | 610 for (int Iteration = 0;; ++Iteration) { in run() 689 if (Iteration >= MaxIterations) { in run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | CallGraphSCCPass.cpp | 490 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()
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglWideColorTests.cpp | 565 struct Iteration struct 570 Iteration(float s, float i, int c) in Iteration() function 582 const std::vector<Iteration>& iterations); 615 const std::vector<struct Iteration> m_iterations; 619 WideColorSurfaceTest::WideColorSurfaceTest (EglTestContext& eglTestCtx, const char* name, const char* description, const EGLint* attribList, EGLint colorSpace, const std::vector<struct Iteration>& iterations) in WideColorSurfaceTest() 1190 std::vector<Iteration>::const_iterator it; // declare an Iterator to a vector of strings in doClearTest() 1387 std::vector<Iteration> iterations; in init() 1390 iterations.push_back(Iteration(-0.333251953125f, fp16Increment1, 10)); in init() 1392 iterations.push_back(Iteration(-fp16Increment1 * 5.0f, fp16Increment1, 10)); in init() 1395 iterations.push_back(Iteration(1. in init() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | FlattenCFG.cpp | 282 bool Iteration = true; in FlattenParallelAndOr() local 307 Iteration = false; in FlattenParallelAndOr() 312 } while (Iteration); in FlattenParallelAndOr()
|
/third_party/node/deps/v8/src/ast/ |
H A D | scopes.cc | 1562 Iteration iteration = callback(scope); in ForEach() 1564 if ((iteration == Iteration::kDescend) && scope->inner_scope_ != nullptr) { in ForEach() 1624 return Iteration::kDescend; in CollectNonLocals() 1660 return Iteration::kDescend; in AnalyzePartially() 1728 return Iteration::kDescend; in SavePreparseData() 2035 return Iteration::kDescend; in CheckScopePositions() 2045 return Iteration::kContinue; in CheckZones() 2047 return Iteration::kDescend; in CheckZones() 2572 this->ForEach([](Scope* scope) -> Iteration { in AllocateVariablesRecursively() 2574 if (WasLazilyParsed(scope)) return Iteration in AllocateVariablesRecursively() [all...] |
H A D | scopes.h | 439 enum Iteration { enum in v8::internal::Scope
|
/third_party/node/test/parallel/ |
H A D | test-inspector-bindings.js | 73 failures.push(`Iteration ${i} variable: ${v.name} ` +
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | FixedVector_unittest.cpp | 124 TEST(FixedVector, Iteration) in TEST()
|
H A D | FastVector_unittest.cpp | 212 TEST(FastVector, Iteration) in TEST()
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | StackContainerTests.cpp | 155 TEST(StackContainer, Iteration) { in TEST()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fTextureGatherTests.cpp | 1361 const tcu::ScopedLogSection iterationSection (log, "Iteration" + de::toString(m_currentIteration), "Iteration " + de::toString(m_currentIteration)); in iterate() 1764 struct Iteration 1774 vector<Iteration> m_iterations; 1798 m_iterations.push_back(Iteration()); 1810 m_iterations.push_back(Iteration()); 1896 struct Iteration 1906 vector<Iteration> m_iterations; 1934 m_iterations.push_back(Iteration()); 1946 m_iterations.push_back(Iteration()); [all...] |
H A D | es31fCopyImageTests.cpp | 1830 struct Iteration 1832 Iteration (int methodCount_, const IterationFunc* methods_) 2266 const Iteration iterations[] = 2268 Iteration(DE_LENGTH_OF_ARRAY(iteration1), iteration1), 2269 Iteration(DE_LENGTH_OF_ARRAY(iteration2), iteration2), 2270 Iteration(DE_LENGTH_OF_ARRAY(iteration3), iteration3), 2271 Iteration(DE_LENGTH_OF_ARRAY(iteration4), iteration4), 2272 Iteration(DE_LENGTH_OF_ARRAY(iteration5), iteration5), 2273 Iteration(DE_LENGTH_OF_ARRAY(iteration6), iteration6)
|
/third_party/node/deps/v8/src/parsing/ |
H A D | preparser.h | 419 static PreParserStatement Iteration() { in Iteration() function in v8::internal::PreParserStatement 753 return PreParserStatement::Iteration(); in NewDoWhileStatement() 757 return PreParserStatement::Iteration(); in NewWhileStatement() 772 return PreParserStatement::Iteration(); in NewForStatement() 777 return PreParserStatement::Iteration(); in NewForEachStatement() 781 return PreParserStatement::Iteration(); in NewForOfStatement()
|
/third_party/gn/src/gn/ |
H A D | hash_table_base_unittest.cc | 337 TEST(HashTableBaseTest, Iteration) { in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
H A D | CoroFrame.cpp | 214 int Iteration = 0; in SuspendCrossingInfo() local 215 (void)Iteration; in SuspendCrossingInfo() 219 LLVM_DEBUG(dbgs() << "iteration " << ++Iteration); in SuspendCrossingInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 3592 unsigned Iteration = 0; in combineInstructionsOverFunction() local 3594 ++Iteration; in combineInstructionsOverFunction() 3596 if (Iteration > InfiniteLoopDetectionThreshold) { in combineInstructionsOverFunction() 3602 if (Iteration > MaxIterations) { in combineInstructionsOverFunction() 3603 LLVM_DEBUG(dbgs() << "\n\n[IC] Iteration limit #" << MaxIterations in combineInstructionsOverFunction() 3609 LLVM_DEBUG(dbgs() << "\n\nINSTCOMBINE ITERATION #" << Iteration << " on " in combineInstructionsOverFunction()
|
/third_party/skia/third_party/externals/zlib/google/ |
H A D | zip_reader_unittest.cc | 243 TEST_F(ZipReaderTest, Iteration) { in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | ModuloSchedule.cpp | 1765 int Iteration = J; in peelPrologAndEpilogs() local 1768 for (size_t K = Iteration; K > I; K--) in peelPrologAndEpilogs()
|
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | zip_reader_unittest.cc | 241 TEST_F(ZipReaderTest, Iteration) { in TEST_F()
|