Lines Matching defs:adler
913 strm->adler = adler32(strm->adler, dictionary, dictLength);
960 strm->adler = 1;
1083 putShortMSB(s, (uInt)(strm->adler >> 16));
1084 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1086 strm->adler = 1L;
1170 putShortMSB(s, (uInt)(strm->adler >> 16));
1171 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1300 strm->adler = adler32(strm->adler, strm->next_in, len);
3569 z->adler = z->state->sub.check.need;
3656 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
3657 z->adler = 1L;
4037 z->adler = s->check = (*s->checkfn)(0L, (const Bytef *)Z_NULL, 0);
5353 z->adler = s->check = (*s->checkfn)(s->check, q, n);
5381 z->adler = s->check = (*s->checkfn)(s->check, q, n);
5848 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len)
5850 unsigned long s1 = adler & 0xffff;
5851 unsigned long s2 = (adler >> 16) & 0xffff;