Lines Matching refs:testSlot
464 int idealSlot =0, testSlot, toBeAssigned, inc; in ia_cbr_setup() local
529 testSlot = idealSlot; in ia_cbr_setup()
530 TstSchedTbl = (u16*)(SchedTbl+testSlot); //set index and read in value in ia_cbr_setup()
532 testSlot, TstSchedTbl,toBeAssigned);) in ia_cbr_setup()
537 testSlot = idealSlot - inc; in ia_cbr_setup()
538 if (testSlot < 0) { // Wrap if necessary in ia_cbr_setup()
539 testSlot += dev->CbrTotEntries; in ia_cbr_setup()
541 SchedTbl,testSlot);) in ia_cbr_setup()
543 TstSchedTbl = (u16 *)(SchedTbl + testSlot); // set table index in ia_cbr_setup()
547 testSlot = idealSlot + inc; in ia_cbr_setup()
548 if (testSlot >= (int)dev->CbrTotEntries) { // Wrap if necessary in ia_cbr_setup()
549 testSlot -= dev->CbrTotEntries; in ia_cbr_setup()
552 testSlot, toBeAssigned);) in ia_cbr_setup()
555 TstSchedTbl = (u16*)(SchedTbl + testSlot); in ia_cbr_setup()