Home
last modified time | relevance | path

Searched refs:FIX_POINT_BITS (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/netpfil/ipfw/
H A Ddn_aqm_codel.c151 cst->isqrt = (1UL<< FIX_POINT_BITS) * 7/10; in control_law()
166 temp = (3ULL<< (FIX_POINT_BITS*2)) - (count * temp); in control_law()
177 temp = (cst->isqrt * temp) >> (FIX_POINT_BITS + FIX_POINT_BITS - 8); in control_law()
181 return t + ((cprms->interval * temp) >> FIX_POINT_BITS); in control_law()
H A Ddn_aqm_codel.h51 #define FIX_POINT_BITS 16 macro