Lines Matching defs:counters
826 /* Buckets store counters for each byte value */
1393 * Use 16 u32 counters for calculating new position in buf array
1405 u32 counters[COUNTERS_SIZE];
1414 * counters. Example: 48 33 4 ... in 64bit array
1428 memset(counters, 0, sizeof(counters));
1433 counters[addr]++;
1437 counters[i] += counters[i - 1];
1442 counters[addr]--;
1443 new_addr = counters[addr];
1455 memset(counters, 0, sizeof(counters));
1460 counters[addr]++;
1464 counters[i] += counters[i - 1];
1469 counters[addr]--;
1470 new_addr = counters[addr];