Lines Matching defs:testSlot
466 int idealSlot =0, testSlot, toBeAssigned, inc;
531 testSlot = idealSlot;
532 TstSchedTbl = (u16*)(SchedTbl+testSlot); //set index and read in value
534 testSlot, TstSchedTbl,toBeAssigned);)
539 testSlot = idealSlot - inc;
540 if (testSlot < 0) { // Wrap if necessary
541 testSlot += dev->CbrTotEntries;
543 SchedTbl,testSlot);)
545 TstSchedTbl = (u16 *)(SchedTbl + testSlot); // set table index
549 testSlot = idealSlot + inc;
550 if (testSlot >= (int)dev->CbrTotEntries) { // Wrap if necessary
551 testSlot -= dev->CbrTotEntries;
554 testSlot, toBeAssigned);)
557 TstSchedTbl = (u16*)(SchedTbl + testSlot);