Lines Matching defs:counters
584 /* Buckets store counters for each byte value */
1125 * Use 16 u32 counters for calculating new position in buf array
1137 u32 counters[COUNTERS_SIZE];
1146 * counters. Example: 48 33 4 ... in 64bit array
1160 memset(counters, 0, sizeof(counters));
1165 counters[addr]++;
1169 counters[i] += counters[i - 1];
1174 counters[addr]--;
1175 new_addr = counters[addr];
1187 memset(counters, 0, sizeof(counters));
1192 counters[addr]++;
1196 counters[i] += counters[i - 1];
1201 counters[addr]--;
1202 new_addr = counters[addr];