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