Lines Matching refs:firstb
422 u_int firstb, lastb, nowb; in callout_process() local
431 firstb = callout_hash(cc->cc_lastscan); in callout_process()
436 if (nowb == firstb) in callout_process()
438 else if (nowb - firstb == 1) in callout_process()
453 if (lastb - firstb >= callwheelsize) { in callout_process()
454 lastb = firstb + callwheelsize - 1; in callout_process()
455 if (nowb - firstb >= callwheelsize) in callout_process()
461 sc = &cc->cc_callwheel[firstb & callwheelmask]; in callout_process()
476 cc->cc_bucket = firstb & callwheelmask; in callout_process()
516 firstb++; in callout_process()
522 } while (((int)(firstb - lastb)) <= 0); in callout_process()