Lines Matching defs:testSlot
465 int idealSlot =0, testSlot, toBeAssigned, inc;
530 testSlot = idealSlot;
531 TstSchedTbl = (u16*)(SchedTbl+testSlot); //set index and read in value
533 testSlot, TstSchedTbl,toBeAssigned);)
538 testSlot = idealSlot - inc;
539 if (testSlot < 0) { // Wrap if necessary
540 testSlot += dev->CbrTotEntries;
542 SchedTbl,testSlot);)
544 TstSchedTbl = (u16 *)(SchedTbl + testSlot); // set table index
548 testSlot = idealSlot + inc;
549 if (testSlot >= (int)dev->CbrTotEntries) { // Wrap if necessary
550 testSlot -= dev->CbrTotEntries;
553 testSlot, toBeAssigned);)
556 TstSchedTbl = (u16*)(SchedTbl + testSlot);