Searched refs:numIterations (Results 1 - 25 of 52) sorted by relevance

123

/external/lzma/CPP/7zip/UI/Console/
H A DBenchCon.h12 const CObjectVector<CProperty> &props, UInt32 numIterations, FILE *f);
H A DBenchCon.cpp35 const CObjectVector<CProperty> &props, UInt32 numIterations, FILE *f)
40 &callback, NULL, props, numIterations, true);
34 BenchCon(DECL_EXTERNAL_CODECS_LOC_VARS const CObjectVector<CProperty> &props, UInt32 numIterations, FILE *f) argument
/external/tensorflow/tensorflow/core/kernels/
H A Dparameterized_truncated_normal_op_gpu.cu.cc127 int numIterations = 0; local
128 while (numIterations < kMaxIterations) {
142 numIterations + 1 >= kMaxIterations) {
151 // Break out of the nested loop by updating numIterations.
152 numIterations = kMaxIterations;
155 numIterations++;
165 int numIterations = 0; local
166 while (numIterations < kMaxIterations) {
174 if ((u <= g && z < normMax) || numIterations + 1 >= kMaxIterations) {
176 // Break out of the nested loop by updating numIterations
[all...]
H A Dparameterized_truncated_normal_op.cc104 int numIterations = 0;
147 numIterations + 1 >= kMaxIterations) {
160 numIterations = 0;
162 numIterations++;
185 numIterations + 1 >= kMaxIterations) {
191 numIterations = 0;
193 numIterations++;
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DUnivariateRealSolverUtils.java186 int numIterations = 0 ;
194 numIterations++ ;
195 } while ((fa * fb > 0.0) && (numIterations < maximumIterations) &&
201 numIterations, maximumIterations, initial,
/external/deqp/framework/delibs/debase/
H A DdeMathTest.c74 const int numIterations = 2500000; local
97 for (ndx = 0; ndx < numIterations; ++ndx)
/external/deqp/framework/delibs/decpp/
H A DdeRingBuffer.cpp36 const int numIterations = 16; local
38 for (int iterNdx = 0; iterNdx < numIterations; iterNdx++)
H A DdeBlockBuffer.cpp161 const int numIterations = 8; local
162 for (int iterNdx = 0; iterNdx < numIterations; iterNdx++)
302 const int numIterations = 8; local
304 for (int iterNdx = 0; iterNdx < numIterations; iterNdx++)
H A DdeThreadSafeRingBuffer.cpp125 const int numIterations = 16; local
126 for (int iterNdx = 0; iterNdx < numIterations; iterNdx++)
/external/lzma/CPP/7zip/UI/Common/
H A DBench.h33 UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt64 numIterations);
51 UInt32 numIterations,
H A DBench.cpp647 UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt64 numIterations);
672 UInt64 CBenchProps::GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt64 numIterations)
674 UInt64 numCommands = (inSize * DecComplexCompr + outSize * DecComplexUnc) * numIterations;
685 UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt64 numIterations)
689 return props.GetDecompressRating(elapsedTime, freq, outSize, inSize, numIterations);
1457 static HRESULT CrcBig(const void *data, UInt32 size, UInt64 numIterations,
1465 for (i = 0; i < numIterations; i++)
2059 UInt64 numIterations = complexInCommands / complexity / bsize;
2060 if (numIterations == 0)
2061 numIterations
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractScheduledServiceTest.java367 assertEquals(1, service.numIterations.get());
373 assertEquals(1, service.numIterations.get());
394 int numIterations = service.numIterations.get();
398 assertEquals(numIterations, service.numIterations.get());
402 final AtomicInteger numIterations = new AtomicInteger(0); field in class:AbstractScheduledServiceTest.SchedulerTest.TestAbstractScheduledCustomService
408 numIterations.incrementAndGet();
438 assertEquals(i, service.numIterations.get());
451 final AtomicInteger numIterations field in class:AbstractScheduledServiceTest.SchedulerTest.TestFailingCustomScheduledService
[all...]
/external/deqp/framework/common/
H A DtcuCPUWarmup.cpp67 static inline float dummyComputation (float initial, int numIterations) argument
72 for (int i = 0; i < numIterations; i++)
/external/deqp/modules/glshared/
H A DglsCalibration.cpp271 const int numIterations = (int)m_calibrateIterations.size(); local
274 if (numIterations > 0)
347 if (numIterations == 0)
352 for (int i = 0; i < numIterations; i++)
358 if (numIterations == 1)
370 for (int i = 0; i < numIterations; i++)
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaAlone.cs188 Int32 numIterations = kNumDefaultItereations;
190 if (!GetNumber((string)nonSwitchStrings[paramIndex++], out numIterations))
191 numIterations = kNumDefaultItereations;
192 return LzmaBench.LzmaBenchmark(numIterations, (UInt32)dictionary);
H A DLzmaBench.cs241 static public int LzmaBenchmark(Int32 numIterations, UInt32 dictionarySize) argument
243 if (numIterations <= 0)
292 for (Int32 i = 0; i < numIterations; i++)
335 kBufferSize * (UInt64)numIterations, true, totalCompressedSize);
/external/lzma/Java/SevenZip/
H A DLzmaBench.java292 static public int LzmaBenchmark(int numIterations, int dictionarySize) throws Exception argument
294 if (numIterations <= 0)
340 for (int i = 0; i < numIterations; i++)
388 kBufferSize * (long)numIterations, true, totalCompressedSize);
/external/deqp/modules/gles2/functional/
H A Des2fFloatStateQueryTests.cpp773 const int numIterations = 120; local
774 for (int i = 0; i < numIterations; ++i)
809 const int numIterations = 120; local
810 for (int i = 0; i < numIterations; ++i)
853 const int numIterations = 120; local
854 for (int i = 0; i < numIterations; ++i)
898 const int numIterations = 120; local
899 for (int i = 0; i < numIterations; ++i)
956 const int numIterations = 120; local
957 for (int i = 0; i < numIterations;
1009 const int numIterations = 120; local
1038 const int numIterations = 120; local
[all...]
H A Des2fRboStateQueryTests.cpp129 const int numIterations = 30; local
130 for (int i = 0; i < numIterations; ++i)
/external/deqp/modules/gles3/functional/
H A Des3fFloatStateQueryTests.cpp864 const int numIterations = 120; local
865 for (int i = 0; i < numIterations; ++i)
899 const int numIterations = 120; local
900 for (int i = 0; i < numIterations; ++i)
940 const int numIterations = 120; local
941 for (int i = 0; i < numIterations; ++i)
981 const int numIterations = 120; local
982 for (int i = 0; i < numIterations; ++i)
1038 const int numIterations = 120; local
1039 for (int i = 0; i < numIterations;
1087 const int numIterations = 120; local
1138 const int numIterations = 120; local
1171 const int numIterations = 120; local
[all...]
H A Des3fRboStateQueryTests.cpp146 const int numIterations = 60; local
147 for (int i = 0; i < numIterations; ++i)
/external/icu/icu4c/source/test/intltest/
H A Dtestidna.h95 void testChaining(const UChar* src,int32_t numIterations,const char* testName,
/external/libmojo/mojo/edk/js/tests/
H A Djs_to_cpp_tests.js36 JsSideConnection.prototype.echo = function (numIterations, arg) {
57 for (i = 0; i < numIterations; ++i) {
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiDescriptorPoolTests.cpp54 tcu::TestStatus resetDescriptorPoolTest (Context& context, deUint32 numIterations) argument
133 for (deUint32 ndx = 0; ndx < numIterations; ++ndx)
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A DLzmaAlone.cpp410 UInt32 numIterations = 1; local
412 numIterations = GetNumber(params[paramIndex++]);
416 HRESULT res = BenchCon(props2, numIterations, stdout);

Completed in 1903 milliseconds

123