Lines Matching refs:Counter
213 unsigned CounterToFeature(T Counter) { in CounterToFeature() argument
225 assert(Counter); in CounterToFeature()
227 /**/ if (Counter >= 128) Bit = 7; in CounterToFeature()
228 else if (Counter >= 32) Bit = 6; in CounterToFeature()
229 else if (Counter >= 16) Bit = 5; in CounterToFeature()
230 else if (Counter >= 8) Bit = 4; in CounterToFeature()
231 else if (Counter >= 4) Bit = 3; in CounterToFeature()
232 else if (Counter >= 3) Bit = 2; in CounterToFeature()
233 else if (Counter >= 2) Bit = 1; in CounterToFeature()
241 size_t Idx, uint8_t Counter) { in CollectFeatures()
244 CounterToFeature(Counter))); in CollectFeatures()