Searched refs:poly (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dcrc32.c45 uLong poly; /* polynomial exclusive-or pattern */ local
50 poly = 0L;
52 poly |= 1L << (31 - p[n]);
58 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
H A Dzcrc32.c55 uLong poly; /* polynomial exclusive-or pattern */ local
60 poly = 0UL;
62 poly |= 1L << (31 - p[n]);
68 c = c & 1 ? poly ^ (c >> 1) : c >> 1;

Completed in 11 milliseconds