Searched refs:WPOLY (Results 1 – 2 of 2) sorted by relevance
60 #define gf_m2(x) ((x<<1) ^ (((x>>7) & 1) * WPOLY))61 #define gf_m4(x) ((x<<2) ^ (((x>>6) & 1) * WPOLY) ^ (((x>>6) & 2) * WPOLY))62 #define gf_m8(x) ((x<<3) ^ (((x>>5) & 1) * WPOLY) ^ (((x>>5) & 2) * WPOLY) \63 ^ (((x>>5) & 4) * WPOLY))
58 #define WPOLY 0x011B macro