Lines Matching refs:poly
120 weight(uint32_t poly) { in weight() argument
124 wt += octet_weight[poly & 0xff]; in weight()
125 wt += octet_weight[(poly >> 8) & 0xff]; in weight()
126 wt += octet_weight[(poly >> 16) & 0xff]; in weight()
127 wt += octet_weight[(poly >> 24)]; in weight()
137 period(uint32_t poly) { in period() argument
149 x = (x >> 1) ^ poly; in period()
176 weight_distribution2(uint32_t poly, int *A) { in weight_distribution2() argument
194 x = (x >> 1) ^ poly; in weight_distribution2()
217 weight_distribution(uint32_t poly, int *A) { in weight_distribution() argument
232 x = (x >> 1) ^ poly; in weight_distribution()