Home | History | Annotate | Download | only in v8-v4

Lines Matching refs:COUNT

44   scheduler.addIdleTask(ID_IDLE, 0, null, COUNT);
75 var COUNT = 1000;
81 * correct run so if the actual queue or hold count is different from
119 * @param {int} count the number of times to schedule the task
121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) {
122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count));
360 * @param {int} count the number of times this task should be scheduled
363 function IdleTask(scheduler, v1, count) {
366 this.count = count;
370 this.count--;
371 if (this.count == 0) return this.scheduler.holdCurrent();
469 var count = this.v1.a1;
471 if (count < DATA_SIZE) {
475 v.a1 = this.v1.a2[count];
476 this.v1.a1 = count + 1;