Lines Matching refs:Plog
53 Plog - bits (<32)
55 Plog is related to max_P by formula:
57 max_P = (qth_max-qth_min)/2^Plog;
59 F.e. if qth_max=128K and qth_min=32K, then Plog=22
141 u8 Plog; /* random number bits */
155 static inline u32 red_maxp(u8 Plog)
157 return Plog < 32 ? (~0U >> Plog) : ~0U;
231 u32 qth_min, u32 qth_max, u8 Wlog, u8 Plog,
240 p->Plog = Plog;
245 max_P = red_maxp(Plog);
246 max_P *= delta; /* max_P = (qth_max - qth_min)/2^Plog */
378 i.e. 0..(2^Plog). If we used floating point
379 arithmetics, it would be: (2^Plog)*rnd_num,