Home
last modified time | relevance | path

Searched refs:loopCount (Results 1 – 25 of 43) sorted by relevance

12

/third_party/jerryscript/tests/jerry/es2015/
Dmap-iterators.js129 var loopCount = 0; variable
139 if (loopCount === 0) {
148 assert (key === expected[loopCount][0]);
149 assert (value === expected[loopCount][1]);
151 loopCount++;
154 assert(loopCount === expected.length);
156 loopCount = 0;
161 if (loopCount === 0) {
166 assert(key === expected[loopCount][0]);
167 assert(value === expected[loopCount][1]);
[all …]
Dset-iterators.js112 var loopCount = 0; variable
115 if (loopCount === 0) {
122 assert(element === expected[loopCount++]);
125 assert(loopCount === expected.length);
129 loopCount = 0;
132 if (loopCount === 0) {
137 assert(value === expected[loopCount++]);
142 loopCount = 0;
145 if (loopCount === 0) {
153 assert(value === expected[loopCount++]);
/third_party/icu/icu4c/source/test/perf/leperf/
Dleperf.cpp94 int32_t loopCount; in main() local
100 timeTaken = utimer_loopUntilDone(len, &loopCount, iterate, &p); in main()
101 …leperf: .. iter= %d\n", timeTaken, 1000000000.0*(timeTaken/(double)loopCount), (int32_t)loopCount); in main()
111 loopCount=0; in main()
114 timeTaken = utimer_loopUntilDone(len, &loopCount, iterate, &p); in main()
115 timeNs = 1000000000.0*(timeTaken/(double)loopCount); in main()
116 …leperf: PFI .. took %.fs %.2fns/ea\nleperf: .. iter= %d\n", timeTaken, timeNs, (int32_t)loopCount); in main()
Dletrperf.cpp152 int32_t loopCount; in main() local
156 time_taken = utimer_loopUntilDone(runTime, &loopCount, x, y); \ in main()
157 printf("%s:\t%.1fs\t#%d\t%.1f/s\n", #x, time_taken, loopCount, loopCount/(double)time_taken); in main()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DFence11.cpp87 int loopCount = 0; in finish() local
90 loopCount++; in finish()
93 bool checkDeviceLost = (loopCount % kPollingD3DDeviceLostCheckFrequency) == 0; in finish()
180 int loopCount = 0; in clientWait() local
183 loopCount++; in clientWait()
192 bool checkDeviceLost = (loopCount % kPollingD3DDeviceLostCheckFrequency) == 0; in clientWait()
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DRuleBasedTransliterator.java105 int loopCount = 0; in handleTransliterate() local
112 loopCount <= loopLimit && in handleTransliterate()
114 ++loopCount; in handleTransliterate()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DRuleBasedTransliterator.java107 int loopCount = 0; in handleTransliterate() local
114 loopCount <= loopLimit && in handleTransliterate()
116 ++loopCount; in handleTransliterate()
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/unicode/
Dutimer.h266 int32_t* loopCount, in utimer_loopUntilDone() argument
271 *loopCount = 0; in utimer_loopUntilDone()
276 (*loopCount)++; in utimer_loopUntilDone()
/third_party/icu/icu4c/source/tools/ctestfw/unicode/
Dutimer.h266 int32_t* loopCount, in utimer_loopUntilDone() argument
271 *loopCount = 0; in utimer_loopUntilDone()
276 (*loopCount)++; in utimer_loopUntilDone()
/third_party/node/test/parallel/
Dtest-timers-interval-promisified.js183 let loopCount = 0; variable
186 loopCount++;
187 if (loopCount === 5) controller.abort();
188 if (loopCount > 5) throw new Error('ran too many times');
192 assert.strictEqual(loopCount, 5);
Dtest-fs-read-stream-fd-leak.js12 const loopCount = 50; constant
53 if (++i === loopCount) {
/third_party/skia/tests/
DAnimatedImageTest.cpp436 for (int loopCount : { 0, 1, 2, 5 }) { in DEF_TEST()
439 animatedImage->setRepetitionCount(loopCount); in DEF_TEST()
440 REPORTER_ASSERT(r, animatedImage->getRepetitionCount() == loopCount); in DEF_TEST()
442 for (int loops = 0; loops <= loopCount; loops++) { in DEF_TEST()
450 if (loops != loopCount) { in DEF_TEST()
452 file, loops, loopCount); in DEF_TEST()
467 file, loopCount); in DEF_TEST()
/third_party/node/deps/icu-small/source/i18n/
Drbt.cpp229 uint32_t loopCount = 0; in handleTransliterate() local
272 loopCount <= loopLimit && in handleTransliterate()
274 ++loopCount; in handleTransliterate()
/third_party/icu/icu4c/source/i18n/
Drbt.cpp229 uint32_t loopCount = 0; in handleTransliterate() local
272 loopCount <= loopLimit && in handleTransliterate()
274 ++loopCount; in handleTransliterate()
/third_party/skia/third_party/externals/icu/source/i18n/
Drbt.cpp229 uint32_t loopCount = 0; in handleTransliterate() local
272 loopCount <= loopLimit && in handleTransliterate()
274 ++loopCount; in handleTransliterate()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestMonkey.java1948 int loopCount = 0; in RunMonkey() local
1990 while (loopCount < numIterations || numIterations == -1) { in RunMonkey()
1991 if (numIterations == -1 && loopCount % 10 == 0) { in RunMonkey()
2233 loopCount++; in RunMonkey()
2244 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestCharMonkey() local
2249 RunMonkey(bi, m, "char", seed, loopCount); in TestCharMonkey()
2254 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestWordMonkey() local
2260 RunMonkey(bi, m, "word", seed, loopCount); in TestWordMonkey()
2265 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestLineMonkey() local
2272 RunMonkey(bi, m, "line", seed, loopCount); in TestLineMonkey()
[all …]
DRBBIMonkeyTest.java811 for (long loopCount = 0; fLoopCount < 0 || loopCount < fLoopCount; loopCount++) { in run()
833 if (fLoopCount < 0 && loopCount % 100 == 0) { in run()
1025 int loopCount = getIntProperty("loop", isQuick() ? 100 : 5000); in TestMonkey() local
1044 test.fLoopCount = loopCount; in TestMonkey()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
DRBBITestMonkey.java1941 int loopCount = 0; in RunMonkey() local
1983 while (loopCount < numIterations || numIterations == -1) { in RunMonkey()
1984 if (numIterations == -1 && loopCount % 10 == 0) { in RunMonkey()
2226 loopCount++; in RunMonkey()
2237 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestCharMonkey() local
2242 RunMonkey(bi, m, "char", seed, loopCount); in TestCharMonkey()
2247 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestWordMonkey() local
2253 RunMonkey(bi, m, "word", seed, loopCount); in TestWordMonkey()
2258 int loopCount = getIntProperty("loop", isQuick() ? 500 : 10000); in TestLineMonkey() local
2264 RunMonkey(bi, m, "line", seed, loopCount); in TestLineMonkey()
[all …]
DRBBIMonkeyTest.java807 for (long loopCount = 0; fLoopCount < 0 || loopCount < fLoopCount; loopCount++) { in run()
829 if (fLoopCount < 0 && loopCount % 100 == 0) { in run()
1021 int loopCount = getIntProperty("loop", isQuick() ? 100 : 5000); in TestMonkey() local
1040 test.fLoopCount = loopCount; in TestMonkey()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DFenceSyncTests.cpp243 unsigned int loopCount = 0; in TEST_P() local
248 while (value != GL_SIGNALED && loopCount <= 1000000) in TEST_P()
250 loopCount++; in TEST_P()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DNormalizationMonkeyTest.java26 int loopCount = 100; field in NormalizationMonkeyTest
52 while (i < loopCount) { in TestNormalize()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
DNormalizationMonkeyTest.java29 int loopCount = 100; field in NormalizationMonkeyTest
55 while (i < loopCount) { in TestNormalize()
/third_party/icu/icu4c/source/test/intltest/
Drbbimonkeytest.cpp673 for (int64_t loopCount = 0; fLoopCount < 0 || loopCount < fLoopCount; loopCount++) { in runTest() local
688 if (fLoopCount < 0 && loopCount % 100 == 0) { in runTest()
918 int64_t loopCount = quick? 100 : 5000; in testMonkey() local
919 getIntParam("loop", params, loopCount, status); in testMonkey()
958 test->fLoopCount = static_cast<int32_t>(loopCount); in testMonkey()
Dtsmthred.cpp177 for (int32_t loopCount = 0; loopCount < 100; loopCount++) { in doTailTest() local
952 int loopCount = 0; in run() local
954 for (loopCount = 0; loopCount < kStringThreadIterations; loopCount++) { in run()
/third_party/skia/src/codec/
DSkWebpCodec.cpp221 int loopCount = WebPDemuxGetI(fDemux.get(), WEBP_FF_LOOP_COUNT); in onGetRepetitionCount() local
222 if (0 == loopCount) { in onGetRepetitionCount()
226 loopCount--; in onGetRepetitionCount()
227 return loopCount; in onGetRepetitionCount()

12