Lines Matching refs:firstb
440 u_int firstb, lastb, nowb; in callout_process() local
449 firstb = callout_hash(cc->cc_lastscan); in callout_process()
454 if (nowb == firstb) in callout_process()
456 else if (nowb - firstb == 1) in callout_process()
471 if (lastb - firstb >= callwheelsize) { in callout_process()
472 lastb = firstb + callwheelsize - 1; in callout_process()
473 if (nowb - firstb >= callwheelsize) in callout_process()
479 sc = &cc->cc_callwheel[firstb & callwheelmask]; in callout_process()
492 cc->cc_bucket = firstb & callwheelmask; in callout_process()
531 firstb++; in callout_process()
537 } while (((int)(firstb - lastb)) <= 0); in callout_process()