Home | History | Annotate | Download | only in test

Lines Matching refs:poly

120 weight(uint32_t poly) {
124 wt += octet_weight[poly & 0xff];
125 wt += octet_weight[(poly >> 8) & 0xff];
126 wt += octet_weight[(poly >> 16) & 0xff];
127 wt += octet_weight[(poly >> 24)];
137 period(uint32_t poly) {
149 x = (x >> 1) ^ poly;
167 * code generated by the polynomial poly
176 weight_distribution2(uint32_t poly, int *A) {
194 x = (x >> 1) ^ poly;
217 weight_distribution(uint32_t poly, int *A) {
232 x = (x >> 1) ^ poly;