Home | History | Annotate | Download | only in benchmarks

Lines Matching refs:COUNT

49   scheduler.addIdleTask(ID_IDLE, 0, null, COUNT);
80 var COUNT = 1000;
86 * correct run so if the actual queue or hold count is different from
124 * @param {int} count the number of times to schedule the task
126 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) {
127 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count));
365 * @param {int} count the number of times this task should be scheduled
368 function IdleTask(scheduler, v1, count) {
371 this.count = count;
375 this.count--;
376 if (this.count == 0) return this.scheduler.holdCurrent();
474 var count = this.v1.a1;
476 if (count < DATA_SIZE) {
480 v.a1 = this.v1.a2[count];
481 this.v1.a1 = count + 1;