HomeSort by relevance Sort by last modified time
    Searched full:loopcount (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/chromium_org/tools/telemetry/telemetry/page/actions/
loop.js 7 function loopMedia(selector, loopCount) {
8 // Loops media playback `loopCount` times.
11 loop(mediaElements[i], loopCount);
15 function loop(element, loopCount) {
17 loopHTML5Element(element, loopCount);
22 function loopHTML5Element(element, loopCount) {
28 if (currentLoop == loopCount) {
45 willLoopEvent.loopCount = loopCount;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 22 unsigned int LoopCount;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 22 unsigned int LoopCount;
  /external/chromium_org/content/test/data/indexeddb/
transaction_run_forever.js 46 var loopCount = 0;
53 loopCount += 1;
54 if (loopCount == 7) {
  /external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
utimer.h 58 * timeTaken = utimer_loopUntilDone((double)10,(void*) param, NormFn, &loopCount);
65 * double perfNormalization(NormFn fn,const char* mode,Line* fileLines,int32_t loopCount){
108 * for (loops=0; loops<loopCount; loops++) {
126 * void perf(UTimer* timer, UChar* source, int32_t sourceLen, UChar* target, int32_t targetLen, int32_t loopCount,UNormalizationMode mode, UErrorCode* error){
128 * for (loops=0; loops<loopCount; loops++) {
141 * perf(timer1, source,sourceLen, target, targetLen,loopCount,UNORM_NFD,&error);
145 * perf(timer2,source,sourceLen,target,targetLen,loopCount,UNORM_NFC,&error);
147 * perf(timer3, source, sourceLen, target,targetLen, loopCount, UNORM_FCD,&error);
257 * @param loopCount output param to recieve the number of iterations
264 int32_t* loopCount,
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-86.js 29 var loopCount = 0;
37 loopCount += 1;
44 assertEquals(3, loopCount);
  /external/icu4c/tools/ctestfw/unicode/
utimer.h 58 * timeTaken = utimer_loopUntilDone((double)10,(void*) param, NormFn, &loopCount);
65 * double perfNormalization(NormFn fn,const char* mode,Line* fileLines,int32_t loopCount){
108 * for (loops=0; loops<loopCount; loops++) {
126 * void perf(UTimer* timer, UChar* source, int32_t sourceLen, UChar* target, int32_t targetLen, int32_t loopCount,UNormalizationMode mode, UErrorCode* error){
128 * for (loops=0; loops<loopCount; loops++) {
141 * perf(timer1, source,sourceLen, target, targetLen,loopCount,UNORM_NFD,&error);
145 * perf(timer2,source,sourceLen,target,targetLen,loopCount,UNORM_NFC,&error);
147 * perf(timer3, source, sourceLen, target,targetLen, loopCount, UNORM_FCD,&error);
257 * @param loopCount output param to recieve the number of iterations
264 int32_t* loopCount,
    [all...]
  /external/v8/test/mjsunit/regress/
regress-86.js 29 var loopCount = 0;
37 loopCount += 1;
44 assertEquals(3, loopCount);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
UTFDataFormatExceptionTest.java 33 int loopCount = 66;
35 for (int i = 0; i < (loopCount); i++)
55 int loopCount = 66;
57 for (int i = 0; i < (loopCount); i++)
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
SQLWarningTest.java 44 int loopCount = 1;
45 for (int i = 0; i < loopCount; i++) {
91 int loopCount = init1.length;
92 for (int i = 0; i < loopCount; i++) {
140 int loopCount = init1.length;
141 for (int i = 0; i < loopCount; i++) {
192 int loopCount = init1.length;
193 for (int i = 0; i < loopCount; i++) {
238 int loopCount = 1;
239 for (int i = 0; i < loopCount; i++)
    [all...]
SQLExceptionTest.java 77 int loopCount = init1.length;
78 for (int i = 0; i < loopCount; i++) {
126 int loopCount = init1.length;
127 for (int i = 0; i < loopCount; i++) {
173 int loopCount = init1.length;
174 for (int i = 0; i < loopCount; i++) {
215 int loopCount = 1;
216 for (int i = 0; i < loopCount; i++) {
265 int loopCount = 1;
266 for (int i = 0; i < loopCount; i++)
    [all...]
BatchUpdateExceptionTest.java 44 int loopCount = 1;
45 for (int i = 0; i < loopCount; i++) {
90 int loopCount = init1.length;
91 for (int i = 0; i < loopCount; i++) {
144 int loopCount = init1.length;
145 for (int i = 0; i < loopCount; i++) {
201 int loopCount = init1.length;
202 for (int i = 0; i < loopCount; i++) {
259 int loopCount = init1.length;
260 for (int i = 0; i < loopCount; i++)
    [all...]
DataTruncationTest.java 58 int loopCount = init1.length;
59 for (int i = 0; i < loopCount; i++) {
141 int loopCount = 1;
142 for (int i = 0; i < loopCount; i++) {
213 int loopCount = 1;
214 for (int i = 0; i < loopCount; i++) {
285 int loopCount = 1;
286 for (int i = 0; i < loopCount; i++) {
357 int loopCount = 1;
358 for (int i = 0; i < loopCount; i++)
    [all...]
  /external/chromium_org/tools/perf/metrics/
media.js 94 var loopCount = e.loopCount;
97 var idealDuration = metric.element.duration * loopCount;
98 var avg_loop_time = (actualDuration - idealDuration) / loopCount;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_clip_unfilled.c 284 brw_MOV(p, c->reg.loopcount, c->reg.nr_verts);
295 brw_ADD(p, c->reg.loopcount, c->reg.loopcount, brw_imm_d(-1));
303 brw_MOV(p, c->reg.loopcount, c->reg.nr_verts);
333 brw_ADD(p, c->reg.loopcount, c->reg.loopcount, brw_imm_d(-1));
348 brw_MOV(p, c->reg.loopcount, c->reg.nr_verts);
375 brw_ADD(p, c->reg.loopcount, c->reg.loopcount, brw_imm_d(-1));
brw_clip_tri.c 89 c->reg.loopcount = retype(brw_vec1_grf(i, 1), BRW_REGISTER_TYPE_D);
139 struct brw_reg tmp0 = c->reg.loopcount; /* handy temporary */
179 struct brw_reg tmp0 = c->reg.loopcount; /* handy temporary */
264 brw_MOV(p, c->reg.loopcount, c->reg.nr_verts);
360 /* while (--loopcount != 0)
363 brw_ADD(p, c->reg.loopcount, c->reg.loopcount, brw_imm_d(-1));
406 /* for (loopcount = nr_verts-2; loopcount > 0; loopcount--
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip_unfilled.c 284 brw_MOV(p, c->reg.loopcount, c->reg.nr_verts);
295 brw_ADD(p, c->reg.loopcount, c->reg.loopcount, brw_imm_d(-1));
303 brw_MOV(p, c->reg.loopcount, c->reg.nr_verts);
333 brw_ADD(p, c->reg.loopcount, c->reg.loopcount, brw_imm_d(-1));
348 brw_MOV(p, c->reg.loopcount, c->reg.nr_verts);
375 brw_ADD(p, c->reg.loopcount, c->reg.loopcount, brw_imm_d(-1));
brw_clip_tri.c 89 c->reg.loopcount = retype(brw_vec1_grf(i, 1), BRW_REGISTER_TYPE_D);
139 struct brw_reg tmp0 = c->reg.loopcount; /* handy temporary */
179 struct brw_reg tmp0 = c->reg.loopcount; /* handy temporary */
264 brw_MOV(p, c->reg.loopcount, c->reg.nr_verts);
360 /* while (--loopcount != 0)
363 brw_ADD(p, c->reg.loopcount, c->reg.loopcount, brw_imm_d(-1));
406 /* for (loopcount = nr_verts-2; loopcount > 0; loopcount--
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rbt.cpp 227 uint32_t loopCount = 0;
263 loopCount <= loopLimit &&
265 ++loopCount;
  /external/icu4c/i18n/
rbt.cpp 227 uint32_t loopCount = 0;
263 loopCount <= loopLimit &&
265 ++loopCount;
  /external/chromium_org/third_party/icu/source/test/intltest/
rbbitst.h 121 int32_t loopCount, UBool useUText);
  /external/icu4c/test/intltest/
rbbitst.h 120 int32_t loopCount, UBool useUText);
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
dromaeo-3d-cube.html 237 if (Testing.LoopCount > Testing.LoopMax) return;
238 var TestingStr = String(Testing.LoopCount);
251 Testing.LoopCount++;
258 Testing.LoopCount = 0;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 233 if (Testing.LoopCount > Testing.LoopMax) return;
234 var TestingStr = String(Testing.LoopCount);
247 Testing.LoopCount++;
254 Testing.LoopCount = 0;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 233 if (Testing.LoopCount > Testing.LoopMax) return;
234 var TestingStr = String(Testing.LoopCount);
247 Testing.LoopCount++;
254 Testing.LoopCount = 0;

Completed in 979 milliseconds

1 2 3