Lines Matching defs:BASE
34 * and s2 also need to be computed modulo the adler BASE value (reduced). If
48 #define BASE 65521U
49 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
93 * processed before s2 must be reduced modulo BASE.
152 s1 %= BASE;
153 s2 %= BASE;
188 if (s1 >= BASE)
189 s1 -= BASE;
190 s2 %= BASE;
223 if (s1 >= BASE)
224 s1 -= BASE;
225 s2 %= BASE;
245 * processed before s2 must be reduced modulo BASE.
319 s1 %= BASE;
320 s2 %= BASE;
355 if (s1 >= BASE)
356 s1 -= BASE;
357 s2 %= BASE;