Lines Matching refs:testSlot
467 int idealSlot =0, testSlot, toBeAssigned, inc; in ia_cbr_setup() local
532 testSlot = idealSlot; in ia_cbr_setup()
533 TstSchedTbl = (u16*)(SchedTbl+testSlot); //set index and read in value in ia_cbr_setup()
535 testSlot, TstSchedTbl,toBeAssigned);) in ia_cbr_setup()
540 testSlot = idealSlot - inc; in ia_cbr_setup()
541 if (testSlot < 0) { // Wrap if necessary in ia_cbr_setup()
542 testSlot += dev->CbrTotEntries; in ia_cbr_setup()
544 SchedTbl,testSlot);) in ia_cbr_setup()
546 TstSchedTbl = (u16 *)(SchedTbl + testSlot); // set table index in ia_cbr_setup()
550 testSlot = idealSlot + inc; in ia_cbr_setup()
551 if (testSlot >= (int)dev->CbrTotEntries) { // Wrap if necessary in ia_cbr_setup()
552 testSlot -= dev->CbrTotEntries; in ia_cbr_setup()
555 testSlot, toBeAssigned);) in ia_cbr_setup()
558 TstSchedTbl = (u16*)(SchedTbl + testSlot); in ia_cbr_setup()